final class GCounter extends ReplicatedData with ReplicatedDataSerialization with RemovedNodePruning with FastMerge
Implements a 'Growing Counter' CRDT, also called a 'G-Counter'.
It is described in the paper A comprehensive study of Convergent and Commutative Replicated Data Types.
A G-Counter is a increment-only counter (inspired by vector clocks) in which only increment and merge are possible. Incrementing the counter adds 1 to the count for the current node. Divergent histories are resolved by taking the maximum count for each node (like a vector clock merge). The value of the counter is the sum of all node counts.
This class is immutable, i.e. "modifying" methods return a new instance.
- Annotations
- @SerialVersionUID()
- Source
- GCounter.scala
- Alphabetic
- By Inheritance
- GCounter
- FastMerge
- RemovedNodePruning
- ReplicatedDataSerialization
- Serializable
- Serializable
- ReplicatedData
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Type Members
-
type
T = GCounter
The type of the concrete implementation, e.g.
The type of the concrete implementation, e.g.
GSet[A]
. To be specified by subclass.- Definition Classes
- GCounter → ReplicatedData
Value Members
-
def
+(delta: Long)(implicit node: Cluster): GCounter
Increment the counter with the delta specified.
Increment the counter with the delta specified. The delta must be zero or positive.
-
def
equals(o: Any): Boolean
- Definition Classes
- GCounter → AnyRef → Any
-
def
getValue: BigInteger
Java API: Current total value of the counter.
-
def
hashCode(): Int
- Definition Classes
- GCounter → AnyRef → Any
-
def
increment(node: Cluster, delta: Long = 1): GCounter
Increment the counter with the delta specified.
Increment the counter with the delta specified. The delta must be zero or positive.
-
def
merge(that: GCounter): GCounter
Monotonic merge function.
Monotonic merge function.
- Definition Classes
- GCounter → ReplicatedData
-
def
needPruningFrom(removedNode: UniqueAddress): Boolean
Does it have any state changes from a specific node, which has been removed from the cluster.
Does it have any state changes from a specific node, which has been removed from the cluster.
- Definition Classes
- GCounter → RemovedNodePruning
-
def
prune(removedNode: UniqueAddress, collapseInto: UniqueAddress): GCounter
When the
removed
node has been removed from the cluster the state changes from that node will be pruned by collapsing the data entries to another node.When the
removed
node has been removed from the cluster the state changes from that node will be pruned by collapsing the data entries to another node.- Definition Classes
- GCounter → RemovedNodePruning
-
def
pruningCleanup(removedNode: UniqueAddress): GCounter
Remove data entries from a node that has been removed from the cluster and already been pruned.
Remove data entries from a node that has been removed from the cluster and already been pruned.
- Definition Classes
- GCounter → RemovedNodePruning
-
def
toString(): String
- Definition Classes
- GCounter → AnyRef → Any
-
def
value: BigInt
Scala API: Current total value of the counter.