Click or drag to resize
AtomicCounter Class
An atomic 32 bit integer counter.
Inheritance Hierarchy
SystemObject
  Akka.Util.InternalAtomicCounter

Namespace: Akka.Util.Internal
Assembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntax
public class AtomicCounter : IAtomicCounter<int>

The AtomicCounter type exposes the following members.

Constructors
  NameDescription
Public methodAtomicCounter
Creates an instance of an AtomicCounter with a starting value of -1.
Public methodAtomicCounter(Int32)
Creates an instance of an AtomicCounter.
Top
Methods
  NameDescription
Public methodAddAndGet
Adds the specified value to the counter and returns the new value.
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
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 methodGetAndAdd
Returns the current value and adds the specified value to the counter.
Public methodGetAndIncrement
Atomically increments the counter by one.
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIncrementAndGet
Atomically increments the counter by one.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodNext
Increments the counter and returns the next value
Public methodReset
Resets the counter to zero.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
Properties
  NameDescription
Public propertyCurrent
Retrieves the current value of the counter
Top
See Also