Add delta to the current value and return the new value information.
DistributedAtomicLong.add(Long delta)
Add delta to the current value and return the new value information.
DistributedAtomicNumber.add(T delta)
Add delta to the current value and return the new value information.
Atomically sets the value to the given updated value
if the current value ==
the expected value.
DistributedAtomicValue.compareAndSet(byte[] expectedValue,
byte[] newValue)
Atomically sets the value to the given updated value
if the current value ==
the expected value.
Subtract 1 from the current value and return the new value information.
Subtract 1 from the current value and return the new value information.
Subtract 1 from the current value and return the new value information.
DistributedAtomicInteger.get()
DistributedAtomicLong.get()
DistributedAtomicNumber.get()
Returns the current value of the counter.
DistributedAtomicValue.get()
Returns the current value of the counter.
Add 1 to the current value and return the new value information.
Add 1 to the current value and return the new value information.
Add 1 to the current value and return the new value information.
CachedAtomicInteger.next()
Returns the next value (incrementing by 1).
Returns the next value (incrementing by 1).
Subtract delta from the current value and return the new value information.
Subtract delta from the current value and return the new value information.
Subtract delta from the current value and return the new value information.
DistributedAtomicNumber.trySet(T newValue)
Attempt to atomically set the value to the given value.
DistributedAtomicValue.trySet(byte[] newValue)
Attempt to atomically set the value to the given value.