Click or drag to resize
Akka.NETPNCounterDictionary<TKey> Class
Inheritance Hierarchy
System.Object
  Akka.DistributedData.PNCounterDictionary<TKey>

Namespace:  Akka.DistributedData
Assembly:  Akka.DistributedData (in Akka.DistributedData.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax
public class PNCounterDictionary<TKey> : IReplicatedData<PNCounterDictionary<TKey>>, 
	IReplicatedData, IRemovedNodePruning<PNCounterDictionary<TKey>>, IReplicatedDataSerialization, IEquatable<PNCounterDictionary<TKey>>, 
	IEnumerable<KeyValuePair<TKey, BigInteger>>, IEnumerable

Type Parameters

TKey

[Missing <typeparam name="TKey"/> documentation for "T:Akka.DistributedData.PNCounterDictionary`1"]

The PNCounterDictionary< TKey> type exposes the following members.

Constructors
  NameDescription
Public methodPNCounterDictionary<TKey>
Initializes a new instance of the PNCounterDictionary< TKey> class
Top
Properties
  NameDescription
Public propertyCount
Returns number of entries stored within current PNCounterDictionary<TKey>.
Public propertyEntries
Returns all entries stored within current PNCounterDictionary<TKey>
Public propertyIsEmpty
Determines if current PNCounterDictionary< TKey> is empty.
Public propertyItem
Returns a counter value stored within current PNCounterDictionary< TKey> under provided key
Public propertyKeys
Returns all keys of the current PNCounterDictionary<TKey>.
Public propertyValues
Returns all values stored within current PNCounterDictionary<TKey>.
Top
Methods
  NameDescription
Public methodContainsKey
Determines if current PNCounterDictionary< TKey> has a counter registered under provided key.
Public methodDecrement(Cluster, TKey, Int64)
Decrement the counter with the delta specified. If the delta is negative then it will increment instead of decrement.
Public methodDecrement(UniqueAddress, TKey, Int64)
Decrement the counter with the delta specified. If the delta is negative then it will increment instead of decrement.
Public methodEquals(Object)
Determines whether the specified object is equal to the current object.
(Overrides Object.Equals(Object).)
Public methodEquals(PNCounterDictionary<TKey>)
Indicates whether the current object is equal to another object of the same type.
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
Public methodGetHashCode
Serves as the default hash function.
(Overrides Object.GetHashCode().)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIncrement(Cluster, TKey, Int64)
Increment the counter with the delta specified. If the delta is negative then it will decrement instead of increment.
Public methodIncrement(UniqueAddress, TKey, Int64)
Increment the counter with the delta specified. If the delta is negative then it will decrement instead of increment.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodMerge(IReplicatedData)
Public methodMerge(PNCounterDictionary<TKey>)
Public methodNeedPruningFrom
Public methodPrune
Public methodPruningCleanup
Public methodRemove(Cluster, TKey)
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.
Public methodRemove(UniqueAddress, TKey)
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.
Public methodToString
Returns a string that represents the current object.
(Overrides Object.ToString().)
Public methodTryGetValue
Tries to return a value under provided key, if such entry exists.
Top
Fields
  NameDescription
Public fieldStatic memberEmpty
Top
Extension Methods
  NameDescription
Public Extension MethodAsInstanceOf<T>
TBD
(Defined by Extensions.)
Public Extension MethodConcat<KeyValuePair<TKey, BigInteger>>
TBD
(Defined by Extensions.)
Public Extension MethodDrop<KeyValuePair<TKey, BigInteger>>
Scala alias for Skip
(Defined by Extensions.)
Public Extension MethodForEach<KeyValuePair<TKey, BigInteger>>
Applies a delegate action to all elements of this enumerable.
(Defined by Extensions.)
Public Extension MethodGrouped<KeyValuePair<TKey, BigInteger>>
Partitions elements in fixed size Credits to http://stackoverflow.com/a/13731854/465132
(Defined by EnumerableExtensions.)
Public Extension MethodHead<KeyValuePair<TKey, BigInteger>>
Scala alias for FirstOrDefault
(Defined by Extensions.)
Public Extension MethodIterator<KeyValuePair<TKey, BigInteger>>
TBD
(Defined by EnumeratorExtensions.)
Public Extension MethodMatch()Overloaded.
Matches the specified target.
(Defined by PatternMatch.)
Public Extension MethodMatch<T>()Overloaded.
Matches the specified target and return a result of target processing.
(Defined by PatternMatch.)
Public Extension MethodShouldBe<KeyValuePair<TKey, BigInteger>>
TBD
(Defined by AkkaSpecExtensions.)
Public Extension MethodShouldOnlyContainInOrder<KeyValuePair<TKey, BigInteger>>
TBD
(Defined by AkkaSpecExtensions.)
Public Extension MethodTakeRight<KeyValuePair<TKey, BigInteger>>
Selects last n elements.
(Defined by Extensions.)
Top
See Also