AtomicLongFieldUpdater.AccumulateAndGet(Object, Int64, ILongBinaryOperator) Method

Definition

Atomically updates the field of the given object managed by this updater with the results of applying the given function to the current and given values, returning the updated value.

[Android.Runtime.Register("accumulateAndGet", "(Ljava/lang/Object;JLjava/util/function/LongBinaryOperator;)J", "", ApiSince=24)]
public long AccumulateAndGet (Java.Lang.Object? obj, long x, Java.Util.Functions.ILongBinaryOperator? accumulatorFunction);
[<Android.Runtime.Register("accumulateAndGet", "(Ljava/lang/Object;JLjava/util/function/LongBinaryOperator;)J", "", ApiSince=24)>]
member this.AccumulateAndGet : Java.Lang.Object * int64 * Java.Util.Functions.ILongBinaryOperator -> int64

Parameters

obj
Object

An object whose field to get and set

x
Int64

the update value

accumulatorFunction
ILongBinaryOperator

a side-effect-free function of two arguments

Returns

Int64

the updated value

Attributes

Remarks

Java documentation for java.util.concurrent.atomic.AtomicLongFieldUpdater.accumulateAndGet(T, long, java.util.function.LongBinaryOperator).

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