Package io.atomix.primitive
Interface PrimitiveManagementService
public interface PrimitiveManagementService
Primitive management service.
-
Method Summary
Modifier and Type Method Description io.atomix.cluster.messaging.ClusterCommunicationServicegetCommunicationService()Returns the cluster communication service.io.atomix.cluster.messaging.ClusterEventServicegetEventService()Returns the cluster event service.ScheduledExecutorServicegetExecutorService()Returns the primitive thread pool.io.atomix.cluster.ClusterMembershipServicegetMembershipService()Returns the cluster service.PartitionGroupTypeRegistrygetPartitionGroupTypeRegistry()Returns the partition group type registry.PartitionServicegetPartitionService()Returns the partition service.PrimitiveCachegetPrimitiveCache()Returns the local primitive cache.PrimitiveRegistrygetPrimitiveRegistry()Returns the primitive registry.PrimitiveTypeRegistrygetPrimitiveTypeRegistry()Returns the primitive type registry.PrimitiveProtocolTypeRegistrygetProtocolTypeRegistry()Returns the primitive protocol type registry.SerializationServicegetSerializationService()Returns the primitive serialization service.
-
Method Details
-
getExecutorService
ScheduledExecutorService getExecutorService()Returns the primitive thread pool.- Returns:
- the primitive thread pool
-
getMembershipService
io.atomix.cluster.ClusterMembershipService getMembershipService()Returns the cluster service.- Returns:
- the cluster service
-
getCommunicationService
io.atomix.cluster.messaging.ClusterCommunicationService getCommunicationService()Returns the cluster communication service.- Returns:
- the cluster communication service
-
getEventService
io.atomix.cluster.messaging.ClusterEventService getEventService()Returns the cluster event service.- Returns:
- the cluster event service
-
getSerializationService
SerializationService getSerializationService()Returns the primitive serialization service.- Returns:
- the primitive serialization service
-
getPartitionService
PartitionService getPartitionService()Returns the partition service.- Returns:
- the partition service
-
getPrimitiveCache
PrimitiveCache getPrimitiveCache()Returns the local primitive cache.- Returns:
- the local primitive cache
-
getPrimitiveRegistry
PrimitiveRegistry getPrimitiveRegistry()Returns the primitive registry.- Returns:
- the primitive registry
-
getPrimitiveTypeRegistry
PrimitiveTypeRegistry getPrimitiveTypeRegistry()Returns the primitive type registry.- Returns:
- the primitive type registry
-
getProtocolTypeRegistry
PrimitiveProtocolTypeRegistry getProtocolTypeRegistry()Returns the primitive protocol type registry.- Returns:
- the primitive protocol type registry
-
getPartitionGroupTypeRegistry
PartitionGroupTypeRegistry getPartitionGroupTypeRegistry()Returns the partition group type registry.- Returns:
- the partition group type registry
-