AtomicLongFieldUpdater.GetAndAdd(Object, Int64) Method

Definition

Atomically adds the given value to the current value of the field of the given object managed by this updater.

[Android.Runtime.Register("getAndAdd", "(Ljava/lang/Object;J)J", "GetGetAndAdd_Ljava_lang_Object_JHandler")]
public virtual long GetAndAdd (Java.Lang.Object? obj, long delta);
[<Android.Runtime.Register("getAndAdd", "(Ljava/lang/Object;J)J", "GetGetAndAdd_Ljava_lang_Object_JHandler")>]
abstract member GetAndAdd : Java.Lang.Object * int64 -> int64
override this.GetAndAdd : Java.Lang.Object * int64 -> int64

Parameters

obj
Object

An object whose field to get and set

delta
Int64

the value to add

Returns

the previous value

Attributes

Remarks

Atomically adds the given value to the current value of the field of the given object managed by this updater.

Java documentation for java.util.concurrent.atomic.AtomicLongFieldUpdater.getAndAdd(T, 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