Package akka.cluster.ddata
Class ORSet<A>
- java.lang.Object
- 
- akka.cluster.ddata.ORSet<A>
 
- 
- All Implemented Interfaces:
- DeltaReplicatedData,- FastMerge,- RemovedNodePruning,- ReplicatedData,- ReplicatedDataSerialization,- java.io.Serializable
 
 public final class ORSet<A> extends java.lang.Object implements DeltaReplicatedData, ReplicatedDataSerialization, RemovedNodePruning, FastMerge - See Also:
- Serialized Form
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classORSet.AddDeltaOp$static classORSet.DeltaGroup$static interfaceORSet.DeltaOpstatic classORSet.FullStateDeltaOp$static classORSet.RemoveDeltaOp$
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ORSet<A>$colon$plus(A element, SelfUniqueAddress node)Adds an element to the set.ORSet<A>add(SelfUniqueAddress node, A element)Adds an element to the set.static ORSet<java.lang.Object>apply()ORSet<A>clear(SelfUniqueAddress node)Removes all elements from the set, but keeps the history.booleancontains(A a)static <A> ORSet<A>create()Java APIscala.Option<ORSet.DeltaOp>delta()The accumulated delta of mutator operations since previousDeltaReplicatedData.resetDelta().scala.collection.immutable.Set<A>elements()Scala APIstatic <A> ORSet<A>empty()booleanequals(java.lang.Object o)java.util.Set<A>getElements()Java APIinthashCode()booleanisEmpty()ORSet<A>merge(ORSet<A> that)When element is in this Set but not in that Set: Compare the "birth dot" of the present element to the version vector in the Set it is absent from.ORSet<A>mergeDelta(ORSet.DeltaOp thatDelta)scala.collection.immutable.Set<UniqueAddress>modifiedByNodes()The nodes that have changed the state for this data and would need pruning when such node is no longer part of the cluster.booleanneedPruningFrom(UniqueAddress removedNode)Does it have any state changes from a specific node, which has been removed from the cluster.ORSet<A>prune(UniqueAddress removedNode, UniqueAddress collapseInto)When theremovednode has been removed from the cluster the state changes from that node will be pruned by collapsing the data entries to another node.ORSet<A>pruningCleanup(UniqueAddress removedNode)Remove data entries from a node that has been removed from the cluster and already been pruned.ORSet<A>remove(SelfUniqueAddress node, A element)Java API Removes an element from the set.ORSet<A>remove(A element, SelfUniqueAddress node)Scala API Removes an element from the set.ORSet<A>resetDelta()Reset collection of deltas from mutator operations.intsize()java.lang.StringtoString()static <A> scala.Option<scala.collection.immutable.Set<A>>unapply(ORSet<A> s)Extract theelements().static scala.Option<scala.collection.immutable.Set<java.lang.Object>>unapply(ReplicatedData a)Extract theelements()of anORSet.- 
Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface akka.cluster.ddata.DeltaReplicatedDatamergeDelta
 - 
Methods inherited from interface akka.cluster.ddata.FastMergeancestor_$eq, assignAncestor, clearAncestor, isAncestorOf
 - 
Methods inherited from interface akka.cluster.ddata.ReplicatedDatamerge
 
- 
 
- 
- 
- 
Method Detail- 
emptypublic static <A> ORSet<A> empty() 
 - 
applypublic static ORSet<java.lang.Object> apply() 
 - 
createpublic static <A> ORSet<A> create() Java API
 - 
unapplypublic static <A> scala.Option<scala.collection.immutable.Set<A>> unapply(ORSet<A> s) Extract theelements().
 - 
unapplypublic static scala.Option<scala.collection.immutable.Set<java.lang.Object>> unapply(ReplicatedData a) Extract theelements()of anORSet.
 - 
deltapublic scala.Option<ORSet.DeltaOp> delta() Description copied from interface:DeltaReplicatedDataThe accumulated delta of mutator operations since previousDeltaReplicatedData.resetDelta(). When theReplicatorinvokes themodifyfunction of theUpdatemessage and the user code is invoking one or more mutator operations the data is collecting the delta of the operations and makes it available for theReplicatorwith theDeltaReplicatedData.delta()accessor. Themodifyfunction shall still return the full state in the same way asReplicatedDatawithout support for deltas.- Specified by:
- deltain interface- DeltaReplicatedData
 
 - 
elementspublic scala.collection.immutable.Set<A> elements() Scala API
 - 
getElementspublic java.util.Set<A> getElements() Java API
 - 
containspublic boolean contains(A a) 
 - 
isEmptypublic boolean isEmpty() 
 - 
sizepublic int size() 
 - 
$colon$pluspublic ORSet<A> $colon$plus(A element, SelfUniqueAddress node) Adds an element to the set.
 - 
addpublic ORSet<A> add(SelfUniqueAddress node, A element) Adds an element to the set.
 - 
removepublic ORSet<A> remove(A element, SelfUniqueAddress node) Scala API Removes an element from the set.
 - 
removepublic ORSet<A> remove(SelfUniqueAddress node, A element) Java API Removes an element from the set.
 - 
clearpublic ORSet<A> clear(SelfUniqueAddress node) Removes all elements from the set, but keeps the history. This has the same result as using {@link ORSet#remove(node:akka\.cluster\.ddata\.SelfUniqueAddress*} for each element, but it is more efficient.
 - 
mergepublic ORSet<A> merge(ORSet<A> that) When element is in this Set but not in that Set: Compare the "birth dot" of the present element to the version vector in the Set it is absent from. If the element dot is not "seen" by other Set version vector, that means the other set has yet to see this add, and the element is to be in the merged Set. If the other Set version vector dominates the dot, that means the other Set has removed the element already, and the element is not to be in the merged Set.When element in both this Set and in that Set: Some dots may still need to be shed. If this Set has dots that the other Set does not have, and the other Set version vector dominates those dots, then we need to drop those dots. Keep only common dots, and dots that are not dominated by the other sides version vector 
 - 
mergeDeltapublic ORSet<A> mergeDelta(ORSet.DeltaOp thatDelta) 
 - 
resetDeltapublic ORSet<A> resetDelta() Description copied from interface:DeltaReplicatedDataReset collection of deltas from mutator operations. When theReplicatorinvokes themodifyfunction of theUpdatemessage the delta is always "reset" and when the user code is invoking one or more mutator operations the data is collecting the delta of the operations and makes it available for theReplicatorwith theDeltaReplicatedData.delta()accessor. When theReplicatorhas grabbed thedeltait will invoke this method to get a clean data instance without the delta.- Specified by:
- resetDeltain interface- DeltaReplicatedData
 
 - 
modifiedByNodespublic scala.collection.immutable.Set<UniqueAddress> modifiedByNodes() Description copied from interface:RemovedNodePruningThe nodes that have changed the state for this data and would need pruning when such node is no longer part of the cluster.- Specified by:
- modifiedByNodesin interface- RemovedNodePruning
 
 - 
needPruningFrompublic boolean needPruningFrom(UniqueAddress removedNode) Description copied from interface:RemovedNodePruningDoes it have any state changes from a specific node, which has been removed from the cluster.- Specified by:
- needPruningFromin interface- RemovedNodePruning
 
 - 
prunepublic ORSet<A> prune(UniqueAddress removedNode, UniqueAddress collapseInto) Description copied from interface:RemovedNodePruningWhen theremovednode has been removed from the cluster the state changes from that node will be pruned by collapsing the data entries to another node.- Specified by:
- prunein interface- RemovedNodePruning
 
 - 
pruningCleanuppublic ORSet<A> pruningCleanup(UniqueAddress removedNode) Description copied from interface:RemovedNodePruningRemove data entries from a node that has been removed from the cluster and already been pruned.- Specified by:
- pruningCleanupin interface- RemovedNodePruning
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 - 
equalspublic boolean equals(java.lang.Object o) - Overrides:
- equalsin class- java.lang.Object
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- java.lang.Object
 
 
- 
 
-