AtomicLong.GetAndAdd(Int64) Method

Definition

Atomically adds the given value to the current value, with memory effects as specified by VarHandle#getAndAdd.

[Android.Runtime.Register("getAndAdd", "(J)J", "")]
public long GetAndAdd (long delta);
[<Android.Runtime.Register("getAndAdd", "(J)J", "")>]
member this.GetAndAdd : int64 -> int64

Parameters

delta
Int64

the value to add

Returns

the previous value

Attributes

Remarks

Atomically adds the given value to the current value, with memory effects as specified by VarHandle#getAndAdd.

Java documentation for java.util.concurrent.atomic.AtomicLong.getAndAdd(long).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to