|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use com.hazelcast.core | |
---|---|
com.hazelcast.client | |
com.hazelcast.client.config | |
com.hazelcast.client.spi | |
com.hazelcast.cluster | |
com.hazelcast.config | Provides classes for configuring HazelcastInstance. |
com.hazelcast.core | Provides core API interfaces/classes. |
com.hazelcast.hibernate | |
com.hazelcast.hibernate.instance | |
com.hazelcast.jmx | Contains Hazelcast MBean classes. |
com.hazelcast.nio.serialization | Contains interfaces/classes related to serialization; such as serializer interfaces, input/output streams. |
com.hazelcast.query | Contains interfaces/classes related to Hazelcast query and indexing support. |
com.hazelcast.security | Provides interfaces/classes for Hazelcast security implementation. |
com.hazelcast.spi | Provides interfaces/classes for Hazelcast SPI. |
com.hazelcast.spring.cache | |
com.hazelcast.spring.context | |
com.hazelcast.spring.jpa | |
com.hazelcast.spring.mongodb | |
com.hazelcast.transaction | Provides interfaces/classes for Hazelcast transaction support. |
com.hazelcast.web |
Classes in com.hazelcast.core used by com.hazelcast.client | |
---|---|
Client
Client interface allows to get information about a connected clients socket address, type and uuid. |
|
ClientListener
ClientListener allows to get notified when a Client is connected to
or disconnected from cluster. |
|
ClientService
ClientService allows to query connected Client s and
attach/detach ClientListener s to listen connection events. |
|
ClientType
Type of a client. |
|
Cluster
Hazelcast cluster interface. |
|
DistributedObject
Base interface for all distributed objects. |
|
DistributedObjectListener
DistributedObjectListener allows to get notified when a DistributedObject
is created or destroyed cluster-wide. |
|
HazelcastException
Base Hazelcast exception. |
|
HazelcastInstance
Hazelcast instance. |
|
IAtomicLong
IAtomicLong is a redundant and highly available distributed alternative to the java.util.concurrent.atomic.AtomicLong . |
|
ICountDownLatch
ICountDownLatch is a backed-up distributed alternative to the java.util.concurrent.CountDownLatch . |
|
IdGenerator
Cluster-wide unique id generator. |
|
IExecutorService
Distributed implementation of ExecutorService . |
|
IList
Concurrent, distributed implementation of List |
|
ILock
Distributed implementation of Lock . |
|
IMap
Concurrent, distributed, observable and queryable map. |
|
IQueue
Concurrent, blocking, distributed, observable queue. |
|
ISemaphore
ISemaphore is a backed-up distributed alternative to the Semaphore . |
|
ISet
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. |
|
ITopic
Hazelcast provides distribution mechanism for publishing messages that are delivered to multiple subscribers which is also known as publish/subscribe (pub/sub) messaging model. |
|
LifecycleListener
Listener object for lisntening lifecycle events of hazelcast instance |
|
LifecycleService
LifecycleService allows you to shutdown, terminate and listen to LifecycleEvent 's
on HazelcastInstance. |
|
Member
Cluster member interface. |
|
MultiMap
A specialized map whose keys can be associated with multiple values. |
|
PartitionService
PartitionService allows to query Partition s
and attach/detach MigrationListener s to listen partition migration events. |
Classes in com.hazelcast.core used by com.hazelcast.client.config | |
---|---|
ManagedContext
Container managed context, such as Spring, Guice and etc. |
Classes in com.hazelcast.core used by com.hazelcast.client.spi | |
---|---|
DistributedObject
Base interface for all distributed objects. |
|
DistributedObjectListener
DistributedObjectListener allows to get notified when a DistributedObject
is created or destroyed cluster-wide. |
|
Partition
Virtual partition instance. |
Classes in com.hazelcast.core used by com.hazelcast.cluster | |
---|---|
Cluster
Hazelcast cluster interface. |
|
Member
Cluster member interface. |
|
MembershipEvent
Membership event fired when a new member is added to the cluster and/or when a member leaves the cluster. |
|
MembershipListener
Cluster membership listener. |
Classes in com.hazelcast.core used by com.hazelcast.config | |
---|---|
EntryListener
Map Entry listener to get notified when a map entry is added, removed, updated or evicted. |
|
ItemListener
Item listener for IQueue , ISet and IList |
|
ManagedContext
Container managed context, such as Spring, Guice and etc. |
|
QueueStore
QueueStore makes a queue backed by a central data store; such as database, disk etc. |
Classes in com.hazelcast.core used by com.hazelcast.core | |
---|---|
BaseMap
Base interface for Hazelcast distributed maps. |
|
BaseMultiMap
Base interface for Hazelcast distributed multi-maps. |
|
BaseQueue
Base interface for Hazelcast distributed queues. |
|
Client
Client interface allows to get information about a connected clients socket address, type and uuid. |
|
ClientListener
ClientListener allows to get notified when a Client is connected to
or disconnected from cluster. |
|
ClientService
ClientService allows to query connected Client s and
attach/detach ClientListener s to listen connection events. |
|
ClientType
Type of a client. |
|
Cluster
Hazelcast cluster interface. |
|
DistributedObject
Base interface for all distributed objects. |
|
DistributedObjectEvent
DistributedObjectEvent is fired when a DistributedObject
is created or destroyed cluster-wide. |
|
DistributedObjectEvent.EventType
|
|
DistributedObjectListener
DistributedObjectListener allows to get notified when a DistributedObject
is created or destroyed cluster-wide. |
|
EntryEvent
Map Entry event. |
|
EntryEventType
Type of entry event. |
|
EntryListener
Map Entry listener to get notified when a map entry is added, removed, updated or evicted. |
|
EntryView
EntryView represents a readonly view of a map entry. |
|
ExecutionCallback
ExecutionCallback allows to asynchronously get notified when the execution is completed, either successfully or with error. |
|
HazelcastException
Base Hazelcast exception. |
|
HazelcastInstance
Hazelcast instance. |
|
IAtomicLong
IAtomicLong is a redundant and highly available distributed alternative to the java.util.concurrent.atomic.AtomicLong . |
|
ICollection
Concurrent, distributed, partitioned, listenable collection. |
|
ICondition
Distributed implementation of Condition . |
|
ICountDownLatch
ICountDownLatch is a backed-up distributed alternative to the java.util.concurrent.CountDownLatch . |
|
IdGenerator
Cluster-wide unique id generator. |
|
IExecutorService
Distributed implementation of ExecutorService . |
|
IList
Concurrent, distributed implementation of List |
|
ILock
Distributed implementation of Lock . |
|
IMap
Concurrent, distributed, observable and queryable map. |
|
InitialMembershipEvent
A event that is send when a InitialMembershipListener registers itself on a Cluster . |
|
IQueue
Concurrent, blocking, distributed, observable queue. |
|
ISemaphore
ISemaphore is a backed-up distributed alternative to the Semaphore . |
|
ISet
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. |
|
ItemEvent
Map Item event. |
|
ItemEventType
Type of item event. |
|
ItemListener
Item listener for IQueue , ISet and IList |
|
ITopic
Hazelcast provides distribution mechanism for publishing messages that are delivered to multiple subscribers which is also known as publish/subscribe (pub/sub) messaging model. |
|
LifecycleEvent
Lifecycle event fired when HazelcastInstance's state changes. |
|
LifecycleEvent.LifecycleState
lifecycle states |
|
LifecycleListener
Listener object for lisntening lifecycle events of hazelcast instance |
|
LifecycleService
LifecycleService allows you to shutdown, terminate and listen to LifecycleEvent 's
on HazelcastInstance. |
|
MapLoader
Hazelcast distributed map implementation is an in-memory data store but it can be backed by any type of data store such as RDBMS, OODBMS, or simply a file based data store. |
|
MapStore
Hazelcast distributed map implementation is an in-memory data store but it can be backed by any type of data store such as RDBMS, OODBMS, NOSQL or simply a file based data store. |
|
Member
Cluster member interface. |
|
MembershipEvent
Membership event fired when a new member is added to the cluster and/or when a member leaves the cluster. |
|
MembershipListener
Cluster membership listener. |
|
Message
Message for ITopic . |
|
MessageListener
Message listener for ITopic . |
|
MigrationEvent
An event fired when a partition migration starts, completes or fails. |
|
MigrationEvent.MigrationStatus
Migration status: Started, completed or failed |
|
MigrationListener
MigrationListener allows to listen partition migration events. |
|
MultiExecutionCallback
MultiExecutionCallback allows to get notified when an execution is completed on each member which task is submitted to. |
|
MultiMap
A specialized map whose keys can be associated with multiple values. |
|
OutOfMemoryHandler
Handler for OutOfMemoryError |
|
Partition
Virtual partition instance. |
|
PartitionService
PartitionService allows to query Partition s
and attach/detach MigrationListener s to listen partition migration events. |
Classes in com.hazelcast.core used by com.hazelcast.hibernate | |
---|---|
EntryView
EntryView represents a readonly view of a map entry. |
|
HazelcastInstance
Hazelcast instance. |
Classes in com.hazelcast.core used by com.hazelcast.hibernate.instance | |
---|---|
HazelcastInstance
Hazelcast instance. |
Classes in com.hazelcast.core used by com.hazelcast.jmx | |
---|---|
DistributedObjectEvent
DistributedObjectEvent is fired when a DistributedObject
is created or destroyed cluster-wide. |
|
DistributedObjectListener
DistributedObjectListener allows to get notified when a DistributedObject
is created or destroyed cluster-wide. |
|
HazelcastInstance
Hazelcast instance. |
|
IAtomicLong
IAtomicLong is a redundant and highly available distributed alternative to the java.util.concurrent.atomic.AtomicLong . |
|
ICountDownLatch
ICountDownLatch is a backed-up distributed alternative to the java.util.concurrent.CountDownLatch . |
|
IList
Concurrent, distributed implementation of List |
|
ILock
Distributed implementation of Lock . |
|
IMap
Concurrent, distributed, observable and queryable map. |
|
IQueue
Concurrent, blocking, distributed, observable queue. |
|
ISemaphore
ISemaphore is a backed-up distributed alternative to the Semaphore . |
|
ISet
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. |
|
ITopic
Hazelcast provides distribution mechanism for publishing messages that are delivered to multiple subscribers which is also known as publish/subscribe (pub/sub) messaging model. |
|
MultiMap
A specialized map whose keys can be associated with multiple values. |
Classes in com.hazelcast.core used by com.hazelcast.nio.serialization | |
---|---|
HazelcastException
Base Hazelcast exception. |
|
HazelcastInstance
Hazelcast instance. |
|
ManagedContext
Container managed context, such as Spring, Guice and etc. |
Classes in com.hazelcast.core used by com.hazelcast.query | |
---|---|
HazelcastException
Base Hazelcast exception. |
Classes in com.hazelcast.core used by com.hazelcast.security | |
---|---|
HazelcastInstanceAware
Used to get HazelcastInstance reference when submitting a Runnable/Callable using Hazelcast ExecutorService. |
Classes in com.hazelcast.core used by com.hazelcast.spi | |
---|---|
Cluster
Hazelcast cluster interface. |
|
DistributedObject
Base interface for all distributed objects. |
|
DistributedObjectListener
DistributedObjectListener allows to get notified when a DistributedObject
is created or destroyed cluster-wide. |
|
HazelcastInstance
Hazelcast instance. |
|
Member
Cluster member interface. |
|
MembershipEvent
Membership event fired when a new member is added to the cluster and/or when a member leaves the cluster. |
Classes in com.hazelcast.core used by com.hazelcast.spring.cache | |
---|---|
HazelcastInstance
Hazelcast instance. |
|
IMap
Concurrent, distributed, observable and queryable map. |
Classes in com.hazelcast.core used by com.hazelcast.spring.context | |
---|---|
ManagedContext
Container managed context, such as Spring, Guice and etc. |
Classes in com.hazelcast.core used by com.hazelcast.spring.jpa | |
---|---|
MapLoader
Hazelcast distributed map implementation is an in-memory data store but it can be backed by any type of data store such as RDBMS, OODBMS, or simply a file based data store. |
|
MapStore
Hazelcast distributed map implementation is an in-memory data store but it can be backed by any type of data store such as RDBMS, OODBMS, NOSQL or simply a file based data store. |
Classes in com.hazelcast.core used by com.hazelcast.spring.mongodb | |
---|---|
HazelcastInstance
Hazelcast instance. |
|
MapLoader
Hazelcast distributed map implementation is an in-memory data store but it can be backed by any type of data store such as RDBMS, OODBMS, or simply a file based data store. |
|
MapLoaderLifecycleSupport
Provides Lifecycle support for the implementing MapLoader class. |
|
MapStore
Hazelcast distributed map implementation is an in-memory data store but it can be backed by any type of data store such as RDBMS, OODBMS, NOSQL or simply a file based data store. |
Classes in com.hazelcast.core used by com.hazelcast.transaction | |
---|---|
DistributedObject
Base interface for all distributed objects. |
|
HazelcastException
Base Hazelcast exception. |
|
TransactionalList
Transactional implementation of IList . |
|
TransactionalMap
Transactional implementation of BaseMap . |
|
TransactionalMultiMap
Transactional implementation of BaseMultiMap . |
|
TransactionalQueue
Transactional implementation of BaseQueue . |
|
TransactionalSet
Transactional implementation of ISet . |
Classes in com.hazelcast.core used by com.hazelcast.web | |
---|---|
HazelcastInstance
Hazelcast instance. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |