Package io.atomix.primitive.protocol.set
Interface SortedSetProtocol
- All Superinterfaces:
GossipProtocol,PrimitiveProtocol,SetProtocol
- All Known Subinterfaces:
NavigableSetProtocol
@Beta public interface SortedSetProtocol extends SetProtocol
Sorted set 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 <E> SortedSetDelegate<E>newSortedSetDelegate(String name, io.atomix.utils.serializer.Serializer serializer, PrimitiveManagementService managementService)Returns a new set delegate.
-
Method Details
-
newSortedSetDelegate
<E> SortedSetDelegate<E> newSortedSetDelegate(String name, io.atomix.utils.serializer.Serializer serializer, PrimitiveManagementService managementService)Returns a new set delegate.- Type Parameters:
E- the set element type- Parameters:
name- the set nameserializer- the set element serializermanagementService- the primitive management service- Returns:
- a new set delegate
-