AtomicLongArray.AddAndGet(Int32, Int64) Method

Definition

Atomically adds the given value to the element at index i, with memory effects as specified by VarHandle#getAndAdd.

[Android.Runtime.Register("addAndGet", "(IJ)J", "GetAddAndGet_IJHandler")]
public virtual long AddAndGet (int i, long delta);
[<Android.Runtime.Register("addAndGet", "(IJ)J", "GetAddAndGet_IJHandler")>]
abstract member AddAndGet : int * int64 -> int64
override this.AddAndGet : int * int64 -> int64

Parameters

i
Int32

the index

delta
Int64

the value to add

Returns

the updated value

Attributes

Remarks

Atomically adds the given value to the element at index i, with memory effects as specified by VarHandle#getAndAdd.

Java documentation for java.util.concurrent.atomic.AtomicLongArray.addAndGet(int, 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