public interface HazelcastBucketManagerFactory extends org.jnosql.diana.api.key.BucketManagerFactory<HazelcastBucketManager>
BucketManagerFactory| Modifier and Type | Method and Description |
|---|---|
com.hazelcast.core.IAtomicLong |
getAtomicLong(String bucketName)
Creates a
IAtomicLong implementation |
<T> List<T> |
getList(String bucketName)
Creates a
List from bucket name |
<K,V> Map<K,V> |
getMap(String bucketName)
Creates a
Map from bucket name |
<T> Queue<T> |
getQueue(String bucketName)
Creates a
Queue from bucket name |
<T> Set<T> |
getSet(String bucketName)
Creates a
Set from bucket name |
<T> List<T> getList(String bucketName) throws UnsupportedOperationException, NullPointerException
List from bucket nameT - the value typebucketName - a bucket nameList instanceUnsupportedOperationException - when the database does not have to itNullPointerException - when the bucke name is null<T> Set<T> getSet(String bucketName) throws UnsupportedOperationException, NullPointerException
Set from bucket nameT - the value typebucketName - a bucket nameSet instanceUnsupportedOperationException - when the database does not have to itNullPointerException - when the bucket name is null<T> Queue<T> getQueue(String bucketName) throws UnsupportedOperationException, NullPointerException
Queue from bucket nameT - the value typebucketName - a bucket nameQueue instanceUnsupportedOperationException - when the database does not have to itNullPointerException - when the bucket name is null<K,V> Map<K,V> getMap(String bucketName) throws UnsupportedOperationException, NullPointerException
Map from bucket nameK - the key typeV - the value typebucketName - the bucket nameMap instanceUnsupportedOperationException - when the database does not have to itNullPointerException - when the bucket name is nullcom.hazelcast.core.IAtomicLong getAtomicLong(String bucketName) throws NullPointerException
IAtomicLong implementationbucketName - the bucket nameIAtomicLong instanceNullPointerException - when bucketName is nullCopyright © 2018. All rights reserved.