Java java.util.concurrent.atomic AtomicLongFieldUpdater fields, constructors, methods, implement or subclass

Example usage for Java java.util.concurrent.atomic AtomicLongFieldUpdater fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util.concurrent.atomic AtomicLongFieldUpdater.

The text is from its open source code.

Method

booleancompareAndSet(T obj, long expect, long update)
Atomically sets the field of the given object managed by this updater to the given updated value if the current value == the expected value.
longget(T obj)
Returns the current value held in the field of the given object managed by this updater.