public class RedissonAtomicDouble extends RedissonObject implements RAtomicDouble
AtomicLong
codec, commandExecutor
Modifier | Constructor and Description |
---|---|
protected |
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) |
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.
|
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) |
double |
decrementAndGet()
Atomically decrements the current value by one.
|
RFuture<Double> |
decrementAndGetAsync() |
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.
|
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.
|
double |
get()
Gets the current value.
|
double |
getAndAdd(double delta)
Atomically adds the given value to the current value.
|
RFuture<Double> |
getAndAddAsync(double delta) |
double |
getAndDecrement()
Atomically decrements by one the current value.
|
RFuture<Double> |
getAndDecrementAsync() |
double |
getAndIncrement()
Atomically increments the current value by one.
|
RFuture<Double> |
getAndIncrementAsync() |
double |
getAndSet(double newValue)
Atomically sets the given value and returns the old value.
|
RFuture<Double> |
getAndSetAsync(double newValue) |
RFuture<Double> |
getAsync() |
double |
incrementAndGet()
Atomically increments the current value by one.
|
RFuture<Double> |
incrementAndGetAsync() |
long |
remainTimeToLive()
Remaining time to live of Redisson object that has a timeout
|
RFuture<Long> |
remainTimeToLiveAsync()
Get remaining time to live of object in seconds.
|
void |
set(double newValue)
Atomically sets the given value.
|
RFuture<Void> |
setAsync(double newValue) |
String |
toString() |
await, delete, deleteAsync, encode, encodeMapKey, encodeMapValue, get, getCodec, getName, getName, isExists, isExistsAsync, migrate, migrateAsync, move, moveAsync, newPromise, newSucceededFuture, prefixName, rename, renameAsync, renamenx, renamenxAsync, suffixName, touch, touchAsync
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
clearExpire, expire, expireAt, expireAt, remainTimeToLive
delete, getCodec, getName, isExists, migrate, move, rename, renamenx, touch
clearExpireAsync, expireAsync, expireAtAsync, expireAtAsync, remainTimeToLiveAsync
deleteAsync, isExistsAsync, migrateAsync, moveAsync, renameAsync, renamenxAsync, touchAsync
protected 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)
addAndGetAsync
in interface RAtomicDoubleAsync
public 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)
compareAndSetAsync
in interface RAtomicDoubleAsync
public double decrementAndGet()
RAtomicDouble
decrementAndGet
in interface RAtomicDouble
public RFuture<Double> decrementAndGetAsync()
decrementAndGetAsync
in interface RAtomicDoubleAsync
public double get()
RAtomicDouble
get
in interface RAtomicDouble
public RFuture<Double> getAsync()
getAsync
in interface RAtomicDoubleAsync
public double getAndAdd(double delta)
RAtomicDouble
getAndAdd
in interface RAtomicDouble
delta
- the value to addpublic RFuture<Double> getAndAddAsync(double delta)
getAndAddAsync
in interface RAtomicDoubleAsync
public double getAndSet(double newValue)
RAtomicDouble
getAndSet
in interface RAtomicDouble
newValue
- the new valuepublic RFuture<Double> getAndSetAsync(double newValue)
getAndSetAsync
in interface RAtomicDoubleAsync
public double incrementAndGet()
RAtomicDouble
incrementAndGet
in interface RAtomicDouble
public RFuture<Double> incrementAndGetAsync()
incrementAndGetAsync
in interface RAtomicDoubleAsync
public double getAndIncrement()
RAtomicDouble
getAndIncrement
in interface RAtomicDouble
public RFuture<Double> getAndIncrementAsync()
getAndIncrementAsync
in interface RAtomicDoubleAsync
public double getAndDecrement()
RAtomicDouble
getAndDecrement
in interface RAtomicDouble
public RFuture<Double> getAndDecrementAsync()
getAndDecrementAsync
in interface RAtomicDoubleAsync
public void set(double newValue)
RAtomicDouble
set
in interface RAtomicDouble
newValue
- the new valuepublic RFuture<Void> setAsync(double newValue)
setAsync
in interface RAtomicDoubleAsync
public 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 seconds (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
-1
if object does not exist or time in secondsCopyright © 2014–2017 The Redisson Project. All rights reserved.