Package | Description |
---|---|
com.hazelcast.client |
Contains classes/interfaces related to Client
|
com.hazelcast.client.spi |
Contains classes/interfaces related to Service Provider Interface
such as ClientProxy , ClientClusterService
|
com.hazelcast.core |
Provides core API interfaces/classes.
|
com.hazelcast.mapreduce |
This package contains the MapReduce API definition for Hazelcast.
All map reduce operations running in a distributed manner inside the active Hazelcast cluster. |
com.hazelcast.spi |
Provides interfaces/classes for Hazelcast SPI.
|
com.hazelcast.transaction |
Provides interfaces/classes for Hazelcast transaction support.
|
Modifier and Type | Method and Description |
---|---|
<T extends DistributedObject> |
HazelcastClientProxy.getDistributedObject(String serviceName,
Object id)
Deprecated.
|
<T extends DistributedObject> |
HazelcastClient.getDistributedObject(String serviceName,
Object id)
Deprecated.
|
<T extends DistributedObject> |
HazelcastClientProxy.getDistributedObject(String serviceName,
String name) |
<T extends DistributedObject> |
HazelcastClient.getDistributedObject(String serviceName,
String name) |
Modifier and Type | Method and Description |
---|---|
Collection<DistributedObject> |
HazelcastClientProxy.getDistributedObjects() |
Collection<DistributedObject> |
HazelcastClient.getDistributedObjects() |
Modifier and Type | Class and Description |
---|---|
class |
ClientProxy |
Modifier and Type | Method and Description |
---|---|
Collection<? extends DistributedObject> |
ProxyManager.getDistributedObjects() |
Modifier and Type | Interface and Description |
---|---|
interface |
AsyncAtomicLong
A
IAtomicLong that exposes its operations using a ICompletableFuture
so it can be used in the reactive programming model approach. |
interface |
AsyncAtomicReference<E>
A
IAtomicReference that exposes its operations using a ICompletableFuture
so it can be used in the reactive programming model approach. |
interface |
BaseMap<K,V>
Base interface for Hazelcast distributed maps.
|
interface |
BaseMultiMap<K,V>
Base interface for Hazelcast distributed multi-maps.
|
interface |
BaseQueue<E>
Base interface for Hazelcast distributed queues.
|
interface |
IAtomicLong
IAtomicLong is a redundant and highly available distributed alternative to the
java.util.concurrent.atomic.AtomicLong . |
interface |
IAtomicReference<E>
IAtomicReference is a redundant and highly available distributed alternative to the
java.util.concurrent.atomic.AtomicReference . |
interface |
ICollection<E>
Concurrent, distributed, partitioned, listenable collection.
|
interface |
ICountDownLatch
ICountDownLatch is a backed-up distributed alternative to the
java.util.concurrent.CountDownLatch . |
interface |
IdGenerator
Cluster-wide unique id generator.
|
interface |
IExecutorService
Distributed implementation of
ExecutorService . |
interface |
IList<E>
Concurrent, distributed implementation of
List |
interface |
ILock
Distributed implementation of
Lock . |
interface |
IMap<K,V>
Concurrent, distributed, observable and queryable map.
|
interface |
IQueue<E>
Concurrent, blocking, distributed, observable queue.
|
interface |
ISemaphore
ISemaphore is a backed-up distributed alternative to the
Semaphore . |
interface |
ISet<E>
Concurrent, distributed implementation of
Set
This class is not a general-purpose Set implementation! While this class implements
the Set interface, it intentionally violates Set's general contract, which mandates the
use of the equals method when comparing objects. |
interface |
ITopic<E>
Hazelcast provides distribution mechanism for publishing messages that are delivered to multiple subscribers
which is also known as publish/subscribe (pub/sub) messaging model.
|
interface |
MultiMap<K,V>
A specialized map whose keys can be associated with multiple values.
|
interface |
ReplicatedMap<K,V>
A ReplicatedMap is a map like data structure with non-strong consistency
(so-called eventually consistent) and values are locally stored on every
node of the cluster.
|
interface |
TransactionalList<E>
Transactional implementation of
IList . |
interface |
TransactionalMap<K,V>
Transactional implementation of
BaseMap . |
interface |
TransactionalMultiMap<K,V>
Transactional implementation of
BaseMultiMap . |
interface |
TransactionalQueue<E>
Transactional implementation of
BaseQueue . |
interface |
TransactionalSet<E>
Transactional implementation of
ISet . |
Modifier and Type | Method and Description |
---|---|
<T extends DistributedObject> |
HazelcastInstance.getDistributedObject(String serviceName,
Object id)
Deprecated.
|
<T extends DistributedObject> |
HazelcastInstance.getDistributedObject(String serviceName,
String name) |
Modifier and Type | Method and Description |
---|---|
DistributedObject |
DistributedObjectEvent.getDistributedObject()
Returns DistributedObject instance
|
Modifier and Type | Method and Description |
---|---|
Collection<DistributedObject> |
HazelcastInstance.getDistributedObjects()
Returns all
DistributedObject 's such as; queue, map, set, list, topic, lock, multimap. |
Constructor and Description |
---|
DistributedObjectEvent(DistributedObjectEvent.EventType eventType,
String serviceName,
DistributedObject distributedObject) |
Modifier and Type | Interface and Description |
---|---|
interface |
JobTracker
The JobTracker interface is used to create instances of
Job s depending
on the given data structure / data source. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractDistributedObject<S extends RemoteService> |
Modifier and Type | Method and Description |
---|---|
DistributedObject |
RemoteService.createDistributedObject(String objectName) |
DistributedObject |
ProxyService.getDistributedObject(String serviceName,
String objectId) |
Modifier and Type | Method and Description |
---|---|
Collection<DistributedObject> |
ProxyService.getAllDistributedObjects() |
Collection<DistributedObject> |
ProxyService.getDistributedObjects(String serviceName) |
Modifier and Type | Interface and Description |
---|---|
interface |
TransactionalObject
Marker interface for all transactional distributed objects.
|
Copyright © 2014 Hazelcast, Inc.. All Rights Reserved.