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
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PNCounterMap
  2. RemovedNodePruning
  3. ReplicatedDataSerialization
  4. Serializable
  5. Serializable
  6. ReplicatedData
  7. AnyRef
  8. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. 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
    PNCounterMapReplicatedData

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from PNCounterMap to any2stringadd[PNCounterMap] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. 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.

  5. def ->[B](y: B): (PNCounterMap, B)
    Implicit
    This member is added by an implicit conversion from PNCounterMap to ArrowAssoc[PNCounterMap] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def contains(key: String): Boolean
  10. 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.

  11. 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.

  12. def ensuring(cond: (PNCounterMap) ⇒ Boolean, msg: ⇒ Any): PNCounterMap
    Implicit
    This member is added by an implicit conversion from PNCounterMap to Ensuring[PNCounterMap] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (PNCounterMap) ⇒ Boolean): PNCounterMap
    Implicit
    This member is added by an implicit conversion from PNCounterMap to Ensuring[PNCounterMap] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: ⇒ Any): PNCounterMap
    Implicit
    This member is added by an implicit conversion from PNCounterMap to Ensuring[PNCounterMap] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): PNCounterMap
    Implicit
    This member is added by an implicit conversion from PNCounterMap to Ensuring[PNCounterMap] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def entries: Map[String, BigInt]

    Scala API

  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def equals(o: Any): Boolean
    Definition Classes
    PNCounterMap → AnyRef → Any
  19. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from PNCounterMap to StringFormat[PNCounterMap] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  21. def get(key: String): Option[BigInt]

    Scala API: The count for a key

  22. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  23. def getEntries: Map[String, BigInteger]

    Java API

  24. def getValue(key: String): BigInteger

    Java API: The count for a key, or null if it doesn't exist

  25. def hashCode(): Int
    Definition Classes
    PNCounterMap → AnyRef → Any
  26. 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.

  27. 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.

  28. def isEmpty: Boolean
  29. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  30. def merge(that: PNCounterMap): PNCounterMap

    Monotonic merge function.

    Monotonic merge function.

    Definition Classes
    PNCounterMapReplicatedData
  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. 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
    PNCounterMapRemovedNodePruning
  33. final def notify(): Unit
    Definition Classes
    AnyRef
  34. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  35. 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
    PNCounterMapRemovedNodePruning
  36. 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
    PNCounterMapRemovedNodePruning
  37. 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.

  38. def size: Int
  39. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  40. def toString(): String
    Definition Classes
    PNCounterMap → AnyRef → Any
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. def [B](y: B): (PNCounterMap, B)
    Implicit
    This member is added by an implicit conversion from PNCounterMap to ArrowAssoc[PNCounterMap] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from RemovedNodePruning

Inherited from Serializable

Inherited from Serializable

Inherited from ReplicatedData

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from PNCounterMap to any2stringadd[PNCounterMap]

Inherited by implicit conversion StringFormat from PNCounterMap to StringFormat[PNCounterMap]

Inherited by implicit conversion Ensuring from PNCounterMap to Ensuring[PNCounterMap]

Inherited by implicit conversion ArrowAssoc from PNCounterMap to ArrowAssoc[PNCounterMap]

Ungrouped