Package io.atomix.primitive.protocol.map
Interface SortedMapProtocol
- All Superinterfaces:
GossipProtocol,MapProtocol,PrimitiveProtocol
- All Known Subinterfaces:
NavigableMapProtocol
@Beta public interface SortedMapProtocol extends MapProtocol
Sorted 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> NavigableMapDelegate<K,V>newSortedMapDelegate(String name, io.atomix.utils.serializer.Serializer serializer, PrimitiveManagementService managementService)Returns a new sorted map delegate.
-
Method Details
-
newSortedMapDelegate
<K, V> NavigableMapDelegate<K,V> newSortedMapDelegate(String name, io.atomix.utils.serializer.Serializer serializer, PrimitiveManagementService managementService)Returns a new sorted map delegate.- Parameters:
name- the map nameserializer- the map entry serializermanagementService- the primitive management service- Returns:
- a new map delegate
-