Package | Description |
---|---|
com.hazelcast.cache.impl |
Hazelcast JSR-107 aka JCache implementation
|
com.hazelcast.cardinality.impl | |
com.hazelcast.client.impl |
Implementation classes of the com.hazelcast.client interfaces
|
com.hazelcast.collection.impl.collection | |
com.hazelcast.collection.impl.list |
This package contains IList functionality for Hazelcast.
|
com.hazelcast.collection.impl.queue | |
com.hazelcast.collection.impl.set |
This package contains ISet functionality for Hazelcast.
|
com.hazelcast.concurrent.atomiclong |
This package contains IAtomicLong functionality for Hazelcast.
The IAtomicLong is the distributed version of the AtomicLong . |
com.hazelcast.concurrent.atomicreference |
This package contains IAtomicReferece functionality for Hazelcast.
The IAtomicReference is the distributed version of the AtomicReference . |
com.hazelcast.concurrent.countdownlatch |
This package contains ICountDownLatch functionality for Hazelcast.
The ICountDownLatch is the distributed version of the CountDownLatch . |
com.hazelcast.concurrent.idgen |
This package contains IdGenerator functionality for Hazelcast.
|
com.hazelcast.concurrent.lock | |
com.hazelcast.concurrent.semaphore |
This package contains ISemaphore functionality for Hazelcast.
The ISemaphore is the distributed version of the Semaphore . |
com.hazelcast.cp.internal |
Contains implementation of the CP subsystem
|
com.hazelcast.cp.internal.datastructures.atomiclong |
Contains service classes for the Raft-based
IAtomicLong implementation |
com.hazelcast.cp.internal.datastructures.atomicref |
Contains service classes for the Raft-based
IAtomicReference implementation |
com.hazelcast.cp.internal.datastructures.countdownlatch |
Contains service classes for the Raft-based
ICountDownLatch implementation |
com.hazelcast.cp.internal.datastructures.lock |
Contains service classes for the Raft-based
ILock
and FencedLock implementation |
com.hazelcast.cp.internal.datastructures.semaphore |
Contains service classes for the Raft-based
ISemaphore implementation |
com.hazelcast.cp.internal.datastructures.spi |
Contains the abstractions that is used for managing proxies
for the Raft-based data structure implementations
|
com.hazelcast.cp.internal.datastructures.spi.blocking |
Contains the interfaces and abstractions that are implemented / extended
by blocking Raft services, such as Lock, Semaphore, and CountDownLatch
|
com.hazelcast.cp.internal.session |
Contains service classes
for the Raft-based
ISemaphore implementation |
com.hazelcast.crdt |
This package contains CRDT (conflict-free replicated data type)
implementations based on the Hazelcast infrastructure.
|
com.hazelcast.crdt.pncounter |
This package contains the PN (Positive-Negative) CRDT counter
implementation.
|
com.hazelcast.durableexecutor.impl |
Contains the
DurableExecutorService implementation classes. |
com.hazelcast.executor.impl |
This package contains IExecutorService functionality for Hazelcast.
The IExecutorService extends the ExecutorService and provides all kinds
of additional methods related to distributed systems. |
com.hazelcast.flakeidgen.impl | |
com.hazelcast.internal.cluster.impl |
This package contains the implementation of the cluster functionality.
|
com.hazelcast.internal.dynamicconfig |
Classes related to Dynamic Configuration.
|
com.hazelcast.internal.partition |
Contains the internals for partition assignment/management, migration, replication etc.
|
com.hazelcast.internal.partition.impl |
Contains the actual implementation of the
InternalPartitionService . |
com.hazelcast.internal.usercodedeployment |
Module related to User Code Deployment
|
com.hazelcast.map.impl |
Contains implementation specific classes of
com.hazelcast.map package. |
com.hazelcast.mapreduce.impl |
This package contains the default implementation for the map reduce framework
internals.
|
com.hazelcast.multimap.impl |
Contains classes for Hazelcast MultiMap module.
|
com.hazelcast.replicatedmap.impl |
This package contains the implementation of the replicated map service itself and some connection interfaces only used
internally.
|
com.hazelcast.ringbuffer.impl |
Contains the
Ringbuffer implementation classes. |
com.hazelcast.scheduledexecutor.impl | |
com.hazelcast.topic.impl |
This package contains ITopic functionality for Hazelcast.
With the ITopic it is possible to create publish subscribe solutions similar to JMS Topics. |
com.hazelcast.topic.impl.reliable | |
com.hazelcast.transaction.impl |
Provides implementation for Hazelcast transaction support.
|
com.hazelcast.transaction.impl.xa |
Provides implementation for Hazelcast XA transaction support.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ICacheService |
Modifier and Type | Class and Description |
---|---|
class |
AbstractCacheService |
class |
CacheService
Cache Service is the main access point of JCache implementation.
|
Modifier and Type | Class and Description |
---|---|
class |
CardinalityEstimatorService |
Modifier and Type | Class and Description |
---|---|
class |
ClientEngineImpl
Class that requests, listeners from client handled in node side.
|
Modifier and Type | Class and Description |
---|---|
class |
CollectionService |
Modifier and Type | Class and Description |
---|---|
class |
ListService |
Modifier and Type | Class and Description |
---|---|
class |
QueueService
Provides important services via methods for the the Queue
such as
QueueEvictionProcessor |
Modifier and Type | Class and Description |
---|---|
class |
SetService |
Modifier and Type | Class and Description |
---|---|
class |
AtomicLongService |
Modifier and Type | Class and Description |
---|---|
class |
AtomicReferenceService |
Modifier and Type | Class and Description |
---|---|
class |
CountDownLatchService |
Modifier and Type | Class and Description |
---|---|
class |
IdGeneratorService |
Modifier and Type | Class and Description |
---|---|
class |
LockServiceImpl |
Modifier and Type | Class and Description |
---|---|
class |
SemaphoreService |
Modifier and Type | Class and Description |
---|---|
class |
RaftService
Contains
RaftNode instances that run the Raft consensus algorithm
for the created CP groups. |
Modifier and Type | Class and Description |
---|---|
class |
RaftAtomicLongService
Contains Raft-based atomic long instances, implements snapshotting,
and creates proxies
|
Modifier and Type | Class and Description |
---|---|
class |
RaftAtomicRefService
Contains Raft-based atomic reference instances, implements snapshotting,
and creates proxies
|
Modifier and Type | Class and Description |
---|---|
class |
RaftCountDownLatchService
Contains Raft-based count down latch instances
|
Modifier and Type | Class and Description |
---|---|
class |
RaftLockService
Contains Raft-based lock instances
|
Modifier and Type | Class and Description |
---|---|
class |
RaftSemaphoreService
Contains Raft-based semaphore instances
|
Modifier and Type | Interface and Description |
---|---|
interface |
RaftManagedService
An interface that can be implemented by a CP data structure service
to receive CP subsystem lifecycle calls
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractBlockingService<W extends WaitKey,R extends BlockingResource<W>,RR extends ResourceRegistry<W,R>>
Base class for services that maintain blocking resources.
|
Modifier and Type | Class and Description |
---|---|
class |
ProxySessionManagerService
Server-side implementation of Raft proxy session manager
|
class |
RaftSessionService
This service offers a set of abstractions to track liveliness of Hazelcast
clients and servers that use (possibly blocking) data structures
on the Raft layer, such as locks and semaphores.
|
Modifier and Type | Class and Description |
---|---|
class |
CRDTReplicationMigrationService
Service that handles replication and migration of CRDT data for all CRDT
implementations.
|
Modifier and Type | Class and Description |
---|---|
class |
PNCounterService
Service responsible for
PNCounter proxies and replication operation. |
Modifier and Type | Class and Description |
---|---|
class |
DistributedDurableExecutorService |
Modifier and Type | Class and Description |
---|---|
class |
DistributedExecutorService |
Modifier and Type | Class and Description |
---|---|
class |
FlakeIdGeneratorService |
Modifier and Type | Class and Description |
---|---|
class |
ClusterServiceImpl |
Modifier and Type | Class and Description |
---|---|
class |
ClusterWideConfigurationService |
Modifier and Type | Interface and Description |
---|---|
interface |
InternalPartitionService |
Modifier and Type | Class and Description |
---|---|
class |
InternalPartitionServiceImpl
The
InternalPartitionService implementation. |
Modifier and Type | Class and Description |
---|---|
class |
UserCodeDeploymentService |
Modifier and Type | Class and Description |
---|---|
class |
MapManagedService
Defines managed service behavior of map service.
|
class |
MapService
Defines map service behavior.
|
Modifier and Type | Field and Description |
---|---|
protected ManagedService |
MapService.managedService |
Modifier and Type | Class and Description |
---|---|
class |
MapReduceService
The MapReduceService class is the base point for the map reduce implementation.
|
Modifier and Type | Class and Description |
---|---|
class |
MultiMapService |
Modifier and Type | Class and Description |
---|---|
class |
ReplicatedMapService
This is the main service implementation to handle proxy creation, event publishing, migration, anti-entropy and
manages the backing
PartitionContainer s that actually hold the data |
Modifier and Type | Class and Description |
---|---|
class |
RingbufferService
The SPI Service that deals with the
Ringbuffer . |
Modifier and Type | Class and Description |
---|---|
class |
DistributedScheduledExecutorService
Scheduled executor service, middle-man responsible for managing Scheduled Executor containers.
|
Modifier and Type | Class and Description |
---|---|
class |
TopicService |
Modifier and Type | Class and Description |
---|---|
class |
ReliableTopicService |
Modifier and Type | Class and Description |
---|---|
class |
TransactionManagerServiceImpl |
Modifier and Type | Class and Description |
---|---|
class |
XAService
Provides XAResource to the user via proxyService
Holds all prepared state xa transactions
|
Copyright © 2021 Hazelcast, Inc.. All Rights Reserved.