public class RedissonAtomicDouble extends RedissonObject implements RAtomicDouble
AtomicLongcodec, 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(Instant instant)
Set an expire date for object.
|
boolean |
expire(long timeToLive,
TimeUnit timeUnit)
Set a timeout for object.
|
RFuture<Boolean> |
expireAsync(Instant instant)
Set an expire date 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)
Use
RExpirable.expire(Instant) instead |
boolean |
expireAt(long timestamp)
Use
RExpirable.expire(Instant) instead |
RFuture<Boolean> |
expireAtAsync(Date timestamp)
Use
RExpirableAsync.expireAsync(Instant) instead |
RFuture<Boolean> |
expireAtAsync(long timestamp)
Use
RExpirableAsync.expireAsync(Instant) instead |
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, getIdleTime, getIdleTimeAsync, getLockByMapKey, getLockByValue, getName, getRawName, getRawName, isExists, isExistsAsync, migrate, migrateAsync, move, moveAsync, prefixName, removeListener, removeListenerAsync, removeListenersAsync, rename, renameAsync, renamenx, renamenxAsync, restore, restore, restoreAndReplace, restoreAndReplace, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, setName, sizeInMemory, sizeInMemoryAsync, sizeInMemoryAsync, sizeInMemoryAsync, suffixName, toSeconds, toStream, touch, touchAsync, unlink, unlinkAsyncclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitclearExpire, expire, expire, expireAt, expireAt, remainTimeToLiveaddListener, copy, delete, dump, getCodec, getIdleTime, getName, isExists, migrate, move, removeListener, rename, renamenx, restore, restore, restoreAndReplace, restoreAndReplace, sizeInMemory, touch, unlinkclearExpireAsync, expireAsync, expireAsync, expireAtAsync, expireAtAsync, remainTimeToLiveAsyncaddListenerAsync, copyAsync, deleteAsync, dumpAsync, getIdleTimeAsync, isExistsAsync, migrateAsync, moveAsync, removeListenerAsync, renameAsync, renamenxAsync, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, sizeInMemoryAsync, touchAsync, unlinkAsyncpublic RedissonAtomicDouble(CommandAsyncExecutor commandExecutor, String name)
public double addAndGet(double delta)
RAtomicDoubleaddAndGet in interface RAtomicDoubledelta - the value to addpublic RFuture<Double> addAndGetAsync(double delta)
RAtomicDoubleAsyncaddAndGetAsync in interface RAtomicDoubleAsyncdelta - the value to addpublic boolean compareAndSet(double expect,
double update)
RAtomicDouble== the expected value.compareAndSet in interface RAtomicDoubleexpect - the expected valueupdate - the new valuepublic RFuture<Boolean> compareAndSetAsync(double expect, double update)
RAtomicDoubleAsync== the expected value.compareAndSetAsync in interface RAtomicDoubleAsyncexpect - the expected valueupdate - the new valuepublic double decrementAndGet()
RAtomicDoubledecrementAndGet in interface RAtomicDoublepublic RFuture<Double> decrementAndGetAsync()
RAtomicDoubleAsyncdecrementAndGetAsync in interface RAtomicDoubleAsyncpublic double get()
RAtomicDoubleget in interface RAtomicDoublepublic double getAndDelete()
RAtomicDoublegetAndDelete in interface RAtomicDoublepublic RFuture<Double> getAndDeleteAsync()
RAtomicDoubleAsyncgetAndDeleteAsync in interface RAtomicDoubleAsyncpublic RFuture<Double> getAsync()
RAtomicDoubleAsyncgetAsync in interface RAtomicDoubleAsyncpublic double getAndAdd(double delta)
RAtomicDoublegetAndAdd in interface RAtomicDoubledelta - the value to addpublic RFuture<Double> getAndAddAsync(double delta)
RAtomicDoubleAsyncgetAndAddAsync in interface RAtomicDoubleAsyncdelta - the value to addpublic double getAndSet(double newValue)
RAtomicDoublegetAndSet in interface RAtomicDoublenewValue - the new valuepublic RFuture<Double> getAndSetAsync(double newValue)
RAtomicDoubleAsyncgetAndSetAsync in interface RAtomicDoubleAsyncnewValue - the new valuepublic double incrementAndGet()
RAtomicDoubleincrementAndGet in interface RAtomicDoublepublic RFuture<Double> incrementAndGetAsync()
RAtomicDoubleAsyncincrementAndGetAsync in interface RAtomicDoubleAsyncpublic double getAndIncrement()
RAtomicDoublegetAndIncrement in interface RAtomicDoublepublic RFuture<Double> getAndIncrementAsync()
RAtomicDoubleAsyncgetAndIncrementAsync in interface RAtomicDoubleAsyncpublic double getAndDecrement()
RAtomicDoublegetAndDecrement in interface RAtomicDoublepublic RFuture<Double> getAndDecrementAsync()
RAtomicDoubleAsyncgetAndDecrementAsync in interface RAtomicDoubleAsyncpublic void set(double newValue)
RAtomicDoubleset in interface RAtomicDoublenewValue - the new valuepublic RFuture<Void> setAsync(double newValue)
RAtomicDoubleAsyncsetAsync in interface RAtomicDoubleAsyncnewValue - the new valuepublic boolean expire(long timeToLive,
TimeUnit timeUnit)
RExpirableexpire in interface RExpirabletimeToLive - - 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)
RExpirableAsyncexpireAsync in interface RExpirableAsynctimeToLive - - timeout before object will be deletedtimeUnit - - timeout time unittrue if the timeout was set and false if notpublic boolean expireAt(long timestamp)
RExpirableRExpirable.expire(Instant) insteadexpireAt in interface RExpirabletimestamp - - expire date in milliseconds (Unix timestamp)true if the timeout was set and false if notpublic RFuture<Boolean> expireAtAsync(long timestamp)
RExpirableAsyncRExpirableAsync.expireAsync(Instant) insteadexpireAtAsync in interface RExpirableAsynctimestamp - - expire date in milliseconds (Unix timestamp)true if the timeout was set and false if notpublic boolean expire(Instant instant)
RExpirableexpire in interface RExpirableinstant - - expire datetrue if the timeout was set and false if notpublic RFuture<Boolean> expireAsync(Instant instant)
RExpirableAsyncexpireAsync in interface RExpirableAsyncinstant - - expire datetrue if the timeout was set and false if notpublic boolean expireAt(Date timestamp)
RExpirableRExpirable.expire(Instant) insteadexpireAt in interface RExpirabletimestamp - - expire datetrue if the timeout was set and false if notpublic RFuture<Boolean> expireAtAsync(Date timestamp)
RExpirableAsyncRExpirableAsync.expireAsync(Instant) insteadexpireAtAsync in interface RExpirableAsynctimestamp - - expire datetrue if the timeout was set and false if notpublic boolean clearExpire()
RExpirableclearExpire in interface RExpirabletrue if timeout was removed
false if object does not exist or does not have an associated timeoutpublic RFuture<Boolean> clearExpireAsync()
RExpirableAsyncclearExpireAsync in interface RExpirableAsynctrue if the timeout was cleared and false if notpublic long remainTimeToLive()
RExpirableremainTimeToLive in interface RExpirablepublic RFuture<Long> remainTimeToLiveAsync()
RExpirableAsyncremainTimeToLiveAsync in interface RExpirableAsyncprotected RFuture<Boolean> expireAsync(long timeToLive, TimeUnit timeUnit, String... keys)
Copyright © 2014–2021 Redisson. All rights reserved.