Uses of Interface
io.atomix.primitive.PrimitiveManagementService
| Package | Description |
|---|---|
| io.atomix.primitive |
Provides classes and interfaces for defining and managing primitive types.
|
| io.atomix.primitive.protocol.counter |
Interfaces for counter-compatible gossip protocols and delegates.
|
| io.atomix.primitive.protocol.map |
Interfaces for map-compatible gossip protocols and delegates.
|
| io.atomix.primitive.protocol.set |
Interfaces for set-compatible gossip protocols and delegates.
|
| io.atomix.primitive.protocol.value |
Interfaces for value-compatible gossip protocols and delegates.
|
-
Uses of PrimitiveManagementService in io.atomix.primitive
Methods in io.atomix.primitive with parameters of type PrimitiveManagementService Modifier and Type Method Description BPrimitiveType. newBuilder(String primitiveName, C config, PrimitiveManagementService managementService)Returns a new primitive builder.Constructors in io.atomix.primitive with parameters of type PrimitiveManagementService Constructor Description PrimitiveBuilder(PrimitiveType type, String name, C config, PrimitiveManagementService managementService) -
Uses of PrimitiveManagementService in io.atomix.primitive.protocol.counter
Methods in io.atomix.primitive.protocol.counter with parameters of type PrimitiveManagementService Modifier and Type Method Description CounterDelegateCounterProtocol. newCounterDelegate(String name, PrimitiveManagementService managementService)Returns a new counter delegate. -
Uses of PrimitiveManagementService in io.atomix.primitive.protocol.map
Methods in io.atomix.primitive.protocol.map with parameters of type PrimitiveManagementService Modifier and Type Method Description <K, V> MapDelegate<K,V>MapProtocol. newMapDelegate(String name, io.atomix.utils.serializer.Serializer serializer, PrimitiveManagementService managementService)Returns a new map delegate.<K, V> NavigableMapDelegate<K,V>NavigableMapProtocol. newNavigableMapDelegate(String name, io.atomix.utils.serializer.Serializer serializer, PrimitiveManagementService managementService)Returns a new navigable map delegate.<K, V> NavigableMapDelegate<K,V>SortedMapProtocol. newSortedMapDelegate(String name, io.atomix.utils.serializer.Serializer serializer, PrimitiveManagementService managementService)Returns a new sorted map delegate. -
Uses of PrimitiveManagementService in io.atomix.primitive.protocol.set
Methods in io.atomix.primitive.protocol.set with parameters of type PrimitiveManagementService Modifier and Type Method Description <E> NavigableSetDelegate<E>NavigableSetProtocol. newNavigableSetDelegate(String name, io.atomix.utils.serializer.Serializer serializer, PrimitiveManagementService managementService)Returns a new set delegate.<E> SetDelegate<E>SetProtocol. newSetDelegate(String name, io.atomix.utils.serializer.Serializer serializer, PrimitiveManagementService managementService)Returns a new set delegate.<E> SortedSetDelegate<E>SortedSetProtocol. newSortedSetDelegate(String name, io.atomix.utils.serializer.Serializer serializer, PrimitiveManagementService managementService)Returns a new set delegate. -
Uses of PrimitiveManagementService in io.atomix.primitive.protocol.value
Methods in io.atomix.primitive.protocol.value with parameters of type PrimitiveManagementService Modifier and Type Method Description ValueDelegateValueProtocol. newValueDelegate(String name, io.atomix.utils.serializer.Serializer serializer, PrimitiveManagementService managementService)Returns a new value delegate.