final class PNCounterMap extends ReplicatedData with ReplicatedDataSerialization with RemovedNodePruning
Map of named counters. Specialized ORMap with PNCounter values.
This class is immutable, i.e. "modifying" methods return a new instance.
- Annotations
- @SerialVersionUID()
- Source
- PNCounterMap.scala
- Alphabetic
- By Inheritance
- PNCounterMap
- 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 = PNCounterMap
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
- PNCounterMap → ReplicatedData
Value Members
-
def
-(key: String)(implicit node: Cluster): PNCounterMap
Removes an entry from the map.
Removes an entry from the map. Note that if there is a conflicting update on another node the entry will not be removed after merge.
- def contains(key: String): Boolean
-
def
decrement(node: Cluster, key: String, delta: Long): PNCounterMap
Decrement the counter with the delta specified.
Decrement the counter with the delta specified. If the delta is negative then it will increment instead of decrement.
-
def
decrement(key: String, delta: Long = 1)(implicit node: Cluster): PNCounterMap
Decrement the counter with the delta specified.
Decrement the counter with the delta specified. If the delta is negative then it will increment instead of decrement.
-
def
entries: Map[String, BigInt]
Scala API
-
def
equals(o: Any): Boolean
- Definition Classes
- PNCounterMap → AnyRef → Any
-
def
get(key: String): Option[BigInt]
Scala API: The count for a key
-
def
getEntries: Map[String, BigInteger]
Java API
-
def
getValue(key: String): BigInteger
Java API: The count for a key, or
null
if it doesn't exist -
def
hashCode(): Int
- Definition Classes
- PNCounterMap → AnyRef → Any
-
def
increment(node: Cluster, key: String, delta: Long): PNCounterMap
Increment the counter with the delta specified.
Increment the counter with the delta specified. If the delta is negative then it will decrement instead of increment.
-
def
increment(key: String, delta: Long = 1)(implicit node: Cluster): PNCounterMap
Increment the counter with the delta specified.
Increment the counter with the delta specified. If the delta is negative then it will decrement instead of increment.
- def isEmpty: Boolean
-
def
merge(that: PNCounterMap): PNCounterMap
Monotonic merge function.
Monotonic merge function.
- Definition Classes
- PNCounterMap → 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
- PNCounterMap → RemovedNodePruning
-
def
prune(removedNode: UniqueAddress, collapseInto: UniqueAddress): PNCounterMap
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
- PNCounterMap → RemovedNodePruning
-
def
pruningCleanup(removedNode: UniqueAddress): PNCounterMap
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
- PNCounterMap → RemovedNodePruning
-
def
remove(node: Cluster, key: String): PNCounterMap
Removes an entry from the map.
Removes an entry from the map. Note that if there is a conflicting update on another node the entry will not be removed after merge.
- def size: Int
-
def
toString(): String
- Definition Classes
- PNCounterMap → AnyRef → Any