AtomicLong.DecrementAndGet Method

Definition

Atomically decrements the current value, with memory effects as specified by VarHandle#getAndAdd.

[Android.Runtime.Register("decrementAndGet", "()J", "")]
public long DecrementAndGet ();
[<Android.Runtime.Register("decrementAndGet", "()J", "")>]
member this.DecrementAndGet : unit -> int64

Returns

the updated value

Attributes

Remarks

Atomically decrements the current value, with memory effects as specified by VarHandle#getAndAdd.

Equivalent to addAndGet(-1).

Java documentation for java.util.concurrent.atomic.AtomicLong.decrementAndGet().

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