Package io.atomix.primitive.protocol.set
Interface SetProtocol
- All Superinterfaces:
GossipProtocol,PrimitiveProtocol
- All Known Subinterfaces:
NavigableSetProtocol,SortedSetProtocol
@Beta public interface SetProtocol extends GossipProtocol
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> SetDelegate<E>newSetDelegate(String name, io.atomix.utils.serializer.Serializer serializer, PrimitiveManagementService managementService)Returns a new set delegate.
-
Method Details
-
newSetDelegate
<E> SetDelegate<E> newSetDelegate(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
-