|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.concurrent.atomic.AtomicLongArray
An AtomicLongArray maintains a long array in which elements may be updated atomically, and are accessed using volatile semantics.
| Constructor Summary | |
AtomicLongArray(int length)
Create a new AtomicLongArray of given length. |
|
| Method Summary | |
long |
addAndGet(int i,
long delta)
Atomically add the given value to element at index i. |
boolean |
compareAndSet(int i,
long expect,
long update)
Atomically set the value to the given updated value if the current value == the expected value. |
long |
decrementAndGet(int i)
Atomically decrement the element at index i. |
long |
get(int i)
Get the current value at position i. |
long |
getAndAdd(int i,
long delta)
Atomically add the given value to element at index i. |
long |
getAndDecrement(int i)
Atomically decrement by one the element at index i. |
long |
getAndIncrement(int i)
Atomically increment by one the element at index i. |
long |
getAndSet(int i,
long newValue)
Set the element at position i to the given value and return the old value. |
long |
incrementAndGet(int i)
Atomically increment the element at index i. |
int |
length()
Return the length of the array. |
void |
set(int i,
long newValue)
Set the element at position i to the given value. |
boolean |
weakCompareAndSet(int i,
long expect,
long update)
Atomically set the value to the given updated value if the current value == the expected value. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public AtomicLongArray(int length)
length - the length of the array| Method Detail |
public int length()
public long get(int i)
i - the index
public void set(int i,
long newValue)
i - the indexnewValue - the new value
public long getAndSet(int i,
long newValue)
i - the indexnewValue - the new value
public boolean compareAndSet(int i,
long expect,
long update)
i - the indexexpect - the expected valueupdate - the new value
public boolean weakCompareAndSet(int i,
long expect,
long update)
i - the indexexpect - the expected valueupdate - the new value
public long getAndIncrement(int i)
i - the index
public long getAndDecrement(int i)
i - the index
public long getAndAdd(int i,
long delta)
i - the indexdelta - the value to add
public long incrementAndGet(int i)
i - the index
public long decrementAndGet(int i)
i - the index
public long addAndGet(int i,
long delta)
i - the indexdelta - the value to add
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||