AtomicLongFieldUpdater.AddAndGet(Object, 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 current value of the field of the given object managed by this updater.
[Android.Runtime.Register("addAndGet", "(Ljava/lang/Object;J)J", "GetAddAndGet_Ljava_lang_Object_JHandler")]
public virtual long AddAndGet (Java.Lang.Object? obj, long delta);
[<Android.Runtime.Register("addAndGet", "(Ljava/lang/Object;J)J", "GetAddAndGet_Ljava_lang_Object_JHandler")>]
abstract member AddAndGet : Java.Lang.Object * int64 -> int64
override this.AddAndGet : Java.Lang.Object * int64 -> int64
Parameters
- obj
- Object
An object whose field to get and set
- delta
- Int64
the value to add
Returns
the updated 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.addAndGet(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.