Click or drag to resize
AtomicCounterLongAddAndGet Method
Adds an amount to the counter and returns the new value.

Namespace: Akka.Util.Internal
Assembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntax
public long AddAndGet(
	long amount
)

Parameters

amount
Type: SystemInt64
The amount to add to the counter.

Return Value

Type: Int64
The new counter value.

Implements

IAtomicCounterTAddAndGet(T)
Remarks
This uses a CAS loop as Interlocked.Increment is not atomic for longs on 32bit systems.
See Also