Package io.atomix.primitive.protocol.map
Interface MapProtocol
- All Superinterfaces:
GossipProtocol,PrimitiveProtocol
- All Known Subinterfaces:
NavigableMapProtocol,SortedMapProtocol
@Beta public interface MapProtocol extends GossipProtocol
Map protocol.
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.atomix.primitive.protocol.PrimitiveProtocol
PrimitiveProtocol.Type<C extends PrimitiveProtocolConfig<C>> -
Method Summary
Modifier and Type Method Description <K, V> MapDelegate<K,V>newMapDelegate(String name, io.atomix.utils.serializer.Serializer serializer, PrimitiveManagementService managementService)Returns a new map delegate.
-
Method Details
-
newMapDelegate
<K, V> MapDelegate<K,V> newMapDelegate(String name, io.atomix.utils.serializer.Serializer serializer, PrimitiveManagementService managementService)Returns a new map delegate.- Parameters:
name- the map nameserializer- the map entry serializermanagementService- the primitive management service- Returns:
- a new map delegate
-