AtomicIntegerFieldUpdater.GetAndAdd(Object, Int32) 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 current value of the field of the given object managed by this updater.
[Android.Runtime.Register("getAndAdd", "(Ljava/lang/Object;I)I", "GetGetAndAdd_Ljava_lang_Object_IHandler")]
public virtual int GetAndAdd (Java.Lang.Object? obj, int delta);
[<Android.Runtime.Register("getAndAdd", "(Ljava/lang/Object;I)I", "GetGetAndAdd_Ljava_lang_Object_IHandler")>]
abstract member GetAndAdd : Java.Lang.Object * int -> int
override this.GetAndAdd : Java.Lang.Object * int -> int
Parameters
- obj
- Object
An object whose field to get and set
- delta
- Int32
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.AtomicIntegerFieldUpdater.getAndAdd(T, int)
.
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.