public class RedissonAtomicDouble extends RedissonObject implements RAtomicDouble
AtomicLong
codec, commandExecutor, name
Constructor and Description |
---|
RedissonAtomicDouble(CommandAsyncExecutor commandExecutor,
String name) |
Modifier and Type | Method and Description |
---|---|
double |
addAndGet(double delta)
Atomically adds the given value to the current value.
|
RFuture<Double> |
addAndGetAsync(double delta)
Atomically adds the given value to the current value.
|
boolean |
clearExpire()
Clear an expire timeout or expire date for object.
|
RFuture<Boolean> |
clearExpireAsync()
Clear an expire timeout or expire date for object in async mode.
|
protected RFuture<Boolean> |
clearExpireAsync(String... keys) |
boolean |
compareAndSet(double expect,
double update)
Atomically sets the value to the given updated value
only if the current value
== the expected value. |
RFuture<Boolean> |
compareAndSetAsync(double expect,
double update)
Atomically sets the value to the given updated value
only if the current value
== the expected value. |
double |
decrementAndGet()
Atomically decrements the current value by one.
|
RFuture<Double> |
decrementAndGetAsync()
Atomically decrements the current value by one.
|
boolean |
expire(long timeToLive,
TimeUnit timeUnit)
Set a timeout for object.
|
RFuture<Boolean> |
expireAsync(long timeToLive,
TimeUnit timeUnit)
Set a timeout for object in async mode.
|
protected RFuture<Boolean> |
expireAsync(long timeToLive,
TimeUnit timeUnit,
String... keys) |
boolean |
expireAt(Date timestamp)
Set an expire date for object.
|
boolean |
expireAt(long timestamp)
Set an expire date for object.
|
RFuture<Boolean> |
expireAtAsync(Date timestamp)
Set an expire date for object in async mode.
|
RFuture<Boolean> |
expireAtAsync(long timestamp)
Set an expire date for object in async mode.
|
protected RFuture<Boolean> |
expireAtAsync(long timestamp,
String... keys) |
double |
get()
Returns current value.
|
double |
getAndAdd(double delta)
Atomically adds the given value to the current value.
|
RFuture<Double> |
getAndAddAsync(double delta)
Atomically adds the given value to the current value.
|
double |
getAndDecrement()
Atomically decrements by one the current value.
|
RFuture<Double> |
getAndDecrementAsync()
Atomically decrements by one the current value.
|
double |
getAndDelete()
Returns and deletes object
|
RFuture<Double> |
getAndDeleteAsync()
Returns and deletes object
|
double |
getAndIncrement()
Atomically increments the current value by one.
|
RFuture<Double> |
getAndIncrementAsync()
Atomically increments the current value by one.
|
double |
getAndSet(double newValue)
Atomically sets the given value and returns the old value.
|
RFuture<Double> |
getAndSetAsync(double newValue)
Atomically sets the given value and returns the old value.
|
RFuture<Double> |
getAsync()
Returns current value.
|
double |
incrementAndGet()
Atomically increments the current value by one.
|
RFuture<Double> |
incrementAndGetAsync()
Atomically increments the current value by one.
|
long |
remainTimeToLive()
Remaining time to live of Redisson object that has a timeout
|
RFuture<Long> |
remainTimeToLiveAsync()
Remaining time to live of Redisson object that has a timeout
|
void |
set(double newValue)
Atomically sets the given value.
|
RFuture<Void> |
setAsync(double newValue)
Atomically sets the given value.
|
String |
toString() |
addListener, addListener, addListenerAsync, addListenerAsync, copy, copyAsync, delete, deleteAsync, deleteAsync, dump, dumpAsync, encode, encode, encode, encode, encodeMapKey, encodeMapKeys, encodeMapValue, encodeMapValues, get, getCodec, getLockByMapKey, getLockByValue, getName, getName, isExists, isExistsAsync, migrate, migrateAsync, move, moveAsync, prefixName, removeListener, removeListenerAsync, removeListenersAsync, rename, renameAsync, renamenx, renamenxAsync, restore, restore, restoreAndReplace, restoreAndReplace, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, sizeInMemory, sizeInMemoryAsync, sizeInMemoryAsync, suffixName, toSeconds, toStream, touch, touchAsync, unlink, unlinkAsync
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
clearExpire, expire, expireAt, expireAt, remainTimeToLive
addListener, copy, delete, dump, getCodec, getName, isExists, migrate, move, removeListener, rename, renamenx, restore, restore, restoreAndReplace, restoreAndReplace, sizeInMemory, touch, unlink
clearExpireAsync, expireAsync, expireAtAsync, expireAtAsync, remainTimeToLiveAsync
addListenerAsync, copyAsync, deleteAsync, dumpAsync, isExistsAsync, migrateAsync, moveAsync, removeListenerAsync, renameAsync, renamenxAsync, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, sizeInMemoryAsync, touchAsync, unlinkAsync
public RedissonAtomicDouble(CommandAsyncExecutor commandExecutor, String name)
public double addAndGet(double delta)
RAtomicDouble
addAndGet
in interface RAtomicDouble
delta
- the value to addpublic RFuture<Double> addAndGetAsync(double delta)
RAtomicDoubleAsync
addAndGetAsync
in interface RAtomicDoubleAsync
delta
- the value to addpublic boolean compareAndSet(double expect, double update)
RAtomicDouble
==
the expected value.compareAndSet
in interface RAtomicDouble
expect
- the expected valueupdate
- the new valuepublic RFuture<Boolean> compareAndSetAsync(double expect, double update)
RAtomicDoubleAsync
==
the expected value.compareAndSetAsync
in interface RAtomicDoubleAsync
expect
- the expected valueupdate
- the new valuepublic double decrementAndGet()
RAtomicDouble
decrementAndGet
in interface RAtomicDouble
public RFuture<Double> decrementAndGetAsync()
RAtomicDoubleAsync
decrementAndGetAsync
in interface RAtomicDoubleAsync
public double get()
RAtomicDouble
get
in interface RAtomicDouble
public double getAndDelete()
RAtomicDouble
getAndDelete
in interface RAtomicDouble
public RFuture<Double> getAndDeleteAsync()
RAtomicDoubleAsync
getAndDeleteAsync
in interface RAtomicDoubleAsync
public RFuture<Double> getAsync()
RAtomicDoubleAsync
getAsync
in interface RAtomicDoubleAsync
public double getAndAdd(double delta)
RAtomicDouble
getAndAdd
in interface RAtomicDouble
delta
- the value to addpublic RFuture<Double> getAndAddAsync(double delta)
RAtomicDoubleAsync
getAndAddAsync
in interface RAtomicDoubleAsync
delta
- the value to addpublic double getAndSet(double newValue)
RAtomicDouble
getAndSet
in interface RAtomicDouble
newValue
- the new valuepublic RFuture<Double> getAndSetAsync(double newValue)
RAtomicDoubleAsync
getAndSetAsync
in interface RAtomicDoubleAsync
newValue
- the new valuepublic double incrementAndGet()
RAtomicDouble
incrementAndGet
in interface RAtomicDouble
public RFuture<Double> incrementAndGetAsync()
RAtomicDoubleAsync
incrementAndGetAsync
in interface RAtomicDoubleAsync
public double getAndIncrement()
RAtomicDouble
getAndIncrement
in interface RAtomicDouble
public RFuture<Double> getAndIncrementAsync()
RAtomicDoubleAsync
getAndIncrementAsync
in interface RAtomicDoubleAsync
public double getAndDecrement()
RAtomicDouble
getAndDecrement
in interface RAtomicDouble
public RFuture<Double> getAndDecrementAsync()
RAtomicDoubleAsync
getAndDecrementAsync
in interface RAtomicDoubleAsync
public void set(double newValue)
RAtomicDouble
set
in interface RAtomicDouble
newValue
- the new valuepublic RFuture<Void> setAsync(double newValue)
RAtomicDoubleAsync
setAsync
in interface RAtomicDoubleAsync
newValue
- the new valuepublic boolean expire(long timeToLive, TimeUnit timeUnit)
RExpirable
expire
in interface RExpirable
timeToLive
- - timeout before object will be deletedtimeUnit
- - timeout time unittrue
if the timeout was set and false
if notpublic RFuture<Boolean> expireAsync(long timeToLive, TimeUnit timeUnit)
RExpirableAsync
expireAsync
in interface RExpirableAsync
timeToLive
- - timeout before object will be deletedtimeUnit
- - timeout time unittrue
if the timeout was set and false
if notpublic boolean expireAt(long timestamp)
RExpirable
expireAt
in interface RExpirable
timestamp
- - expire date in milliseconds (Unix timestamp)true
if the timeout was set and false
if notpublic RFuture<Boolean> expireAtAsync(long timestamp)
RExpirableAsync
expireAtAsync
in interface RExpirableAsync
timestamp
- - expire date in milliseconds (Unix timestamp)true
if the timeout was set and false
if notpublic boolean expireAt(Date timestamp)
RExpirable
expireAt
in interface RExpirable
timestamp
- - expire datetrue
if the timeout was set and false
if notpublic RFuture<Boolean> expireAtAsync(Date timestamp)
RExpirableAsync
expireAtAsync
in interface RExpirableAsync
timestamp
- - expire datetrue
if the timeout was set and false
if notpublic boolean clearExpire()
RExpirable
clearExpire
in interface RExpirable
true
if timeout was removed
false
if object does not exist or does not have an associated timeoutpublic RFuture<Boolean> clearExpireAsync()
RExpirableAsync
clearExpireAsync
in interface RExpirableAsync
true
if the timeout was cleared and false
if notpublic long remainTimeToLive()
RExpirable
remainTimeToLive
in interface RExpirable
public RFuture<Long> remainTimeToLiveAsync()
RExpirableAsync
remainTimeToLiveAsync
in interface RExpirableAsync
protected RFuture<Boolean> expireAsync(long timeToLive, TimeUnit timeUnit, String... keys)
Copyright © 2014–2020 Redisson. All rights reserved.