Base trait of all atomic references, no matter the type.
Represents an Atomic reference holding a number, providing helpers for easily incrementing and decrementing it.
Represents an Atomic reference holding a number, providing helpers for easily incrementing and decrementing it.
should be something that's Numeric
Represents Atomic references that can block the thread (with spin-locking) in wait of a successful condition (is not supported on top of Scala.js).
Represents Atomic references that can block the thread (with spin-locking) in wait of a successful condition (is not supported on top of Scala.js).
Useful when using an Atomic reference as a locking mechanism.
Atomic classes that are cache-padded for reducing cache contention,
until JEP 142 and @Contended
happens.
Atomic classes that are cache-padded for reducing cache contention,
until JEP 142 and @Contended
happens. See:
http://mail.openjdk.java.net/pipermail/hotspot-dev/2012-November/007309.html
A small toolkit of classes that support compare-and-swap semantics for safe mutation of variables.
On top of the JVM, this means dealing with lock-free thread-safe programming. Also works on top of Javascript, with Scala.js (for good reasons, as Atomic references are still useful in non-multi-threaded environments).
The backbone of Atomic references is this method:
This method atomically sets a variable to the
update
value if it currently holds theexpect
value, reportingtrue
on success orfalse
on failure. The classes in this package also contain methods to get and unconditionally set values. They also support weak operations, defined inWeakAtomic[T]
, such as (e.g.weakCompareAndSet
,lazySet
) or operations that block the current thread through spin-locking, until a condition happens (e.g.waitForCompareAndSet
), methods exposed byBlockingAtomic[T]
.Building a reference is easy with the provided constructor, which will automatically return the most specific type needed (in the following sample, that's an
AtomicDouble
, inheriting fromAtomicNumber[T]
):In comparison with
java.util.concurrent.AtomicReference
, these references implement common interfaces that you can use generically (i.e.Atomic[T]
,AtomicNumber[T]
,BlockableAtomic[T]
,WeakAtomic[T]
). And also provide useful helpers for atomically mutating of values (i.e.transform
,transformAndGet
,getAndTransform
, etc...) or of numbers of any kind (incrementAndGet
,getAndAdd
, etc...).A high-level documentation describing the rationale for these can be found here: Atomic Reference