AtomicLongArray.AddAndGet(Int32, Int64) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.