Package org.apache.pekko.cluster.ddata
Class ORSet<A>
java.lang.Object
org.apache.pekko.cluster.ddata.ORSet<A>
- All Implemented Interfaces:
Serializable,DeltaReplicatedData,FastMerge,RemovedNodePruning,ReplicatedData,ReplicatedDataSerialization
public final class ORSet<A>
extends Object
implements DeltaReplicatedData, ReplicatedDataSerialization, RemovedNodePruning, FastMerge
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classstatic classstatic interfacestatic classstatic class -
Method Summary
Modifier and TypeMethodDescription$colon$plus(A element, SelfUniqueAddress node) Adds an element to the set.add(SelfUniqueAddress node, A element) Adds an element to the set.apply()clear(SelfUniqueAddress node) Removes all elements from the set, but keeps the history.booleanstatic <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()booleanJava APIinthashCode()booleanisEmpty()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.mergeDelta(ORSet.DeltaOp thatDelta) scala.collection.immutable.Set<UniqueAddress>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.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.pruningCleanup(UniqueAddress removedNode) Remove data entries from a node that has been removed from the cluster and already been pruned.remove(A element, SelfUniqueAddress node) Scala API Removes an element from the set.remove(SelfUniqueAddress node, A element) Java API Removes an element from the set.Reset collection of deltas from mutator operations.intsize()toString()static <A> scala.Option<scala.collection.immutable.Set<A>>Extract theelements().static scala.Option<scala.collection.immutable.Set<Object>>Extract theelements()of anORSet.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.apache.pekko.cluster.ddata.DeltaReplicatedData
mergeDeltaMethods inherited from interface org.apache.pekko.cluster.ddata.FastMerge
ancestor_$eq, assignAncestor, clearAncestor, isAncestorOfMethods inherited from interface org.apache.pekko.cluster.ddata.ReplicatedData
merge
-
Method Details
-
empty
-
apply
-
create
Java API -
unapply
Extract theelements(). -
unapply
Extract theelements()of anORSet. -
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 interfaceDeltaReplicatedData
-
elements
Scala API -
getElements
Java API -
contains
-
isEmpty
public boolean isEmpty() -
size
public int size() -
$colon$plus
Adds an element to the set. -
add
Adds an element to the set. -
remove
Scala API Removes an element from the set. -
remove
Java API Removes an element from the set. -
clear
Removes all elements from the set, but keeps the history. This has the same result as using {@link ORSet#remove(node:org\.apache\.pekko\.cluster\.ddata\.SelfUniqueAddress*} for each element, but it is more efficient. -
merge
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
-
mergeDelta
-
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 interfaceDeltaReplicatedData
-
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 interfaceRemovedNodePruning
-
needPruningFrom
Description copied from interface:RemovedNodePruningDoes it have any state changes from a specific node, which has been removed from the cluster.- Specified by:
needPruningFromin interfaceRemovedNodePruning
-
prune
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 interfaceRemovedNodePruning
-
pruningCleanup
Description copied from interface:RemovedNodePruningRemove data entries from a node that has been removed from the cluster and already been pruned.- Specified by:
pruningCleanupin interfaceRemovedNodePruning
-
toString
-
equals
-
hashCode
public int hashCode()
-