API Overview API Index Direct link to this page
JDK 1.6
  Package: java.util.concurrent.atomic
Author(s)
Since
1.5
Version
Serial
Description
  A small toolkit of classes that support lock-free thread-safe programming on single variables.
See also:   
AtomicBoolean View Source A boolean value that may be updated atomically.
AtomicInteger View Source An int value that may be updated atomically.
AtomicIntegerArray View Source An int array in which elements may be updated atomically.
AtomicIntegerFieldUpdater View Source A reflection-based utility that enables atomic updates to designated volatile int fields of designated classes.
AtomicLong View Source A long value that may be updated atomically.
AtomicLongArray View Source A long array in which elements may be updated atomically.
AtomicLongFieldUpdater View Source A reflection-based utility that enables atomic updates to designated volatile long fields of designated classes.
AtomicMarkableReference View Source An AtomicMarkableReference maintains an object reference along with a mark bit, that can be updated atomically.
AtomicReference View Source An object reference that may be updated atomically.
AtomicReferenceArray View Source An array of object references in which elements may be updated atomically.
AtomicReferenceFieldUpdater View Source A reflection-based utility that enables atomic updates to designated volatile reference fields of designated classes.
AtomicStampedReference View Source An AtomicStampedReference maintains an object reference along with an integer "stamp", that can be updated atomically.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar