public class RedissonAtomicLong extends RedissonObject implements RAtomicLong
AtomicLongcodec, commandExecutor| Constructor and Description |
|---|
RedissonAtomicLong(CommandAsyncExecutor commandExecutor,
String name) |
| Modifier and Type | Method and Description |
|---|---|
long |
addAndGet(long delta)
Atomically adds the given value to the current value.
|
RFuture<Long> |
addAndGetAsync(long 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(long expect,
long update)
Atomically sets the value to the given updated value
only if the current value
== the expected value. |
RFuture<Boolean> |
compareAndSetAsync(long expect,
long update) |
long |
decrementAndGet()
Atomically decrements the current value by one.
|
RFuture<Long> |
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.
|
long |
get()
Gets the current value.
|
long |
getAndAdd(long delta)
Atomically adds the given value to the current value.
|
RFuture<Long> |
getAndAddAsync(long delta) |
long |
getAndDecrement()
Atomically decrements by one the current value.
|
RFuture<Long> |
getAndDecrementAsync() |
long |
getAndDelete()
Gets and deletes object
|
RFuture<Long> |
getAndDeleteAsync()
Gets and deletes object
|
long |
getAndIncrement()
Atomically increments the current value by one.
|
RFuture<Long> |
getAndIncrementAsync() |
long |
getAndSet(long newValue)
Atomically sets the given value and returns the old value.
|
RFuture<Long> |
getAndSetAsync(long newValue) |
RFuture<Long> |
getAsync() |
long |
incrementAndGet()
Atomically increments the current value by one.
|
RFuture<Long> |
incrementAndGetAsync() |
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(long newValue)
Atomically sets the given value.
|
RFuture<Void> |
setAsync(long newValue) |
String |
toString() |
await, copy, copyAsync, delete, deleteAsync, encode, encode, encode, encodeMapKey, encodeMapKeys, encodeMapValue, encodeMapValues, get, getCodec, getName, getName, isExists, isExistsAsync, migrate, migrateAsync, move, moveAsync, prefixName, rename, renameAsync, renamenx, renamenxAsync, suffixName, toSeconds, touch, touchAsync, unlink, unlinkAsyncclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitclearExpire, expire, expireAt, expireAt, remainTimeToLivecopy, delete, getCodec, getName, isExists, migrate, move, rename, renamenx, touch, unlinkclearExpireAsync, expireAsync, expireAtAsync, expireAtAsync, remainTimeToLiveAsynccopyAsync, deleteAsync, isExistsAsync, migrateAsync, moveAsync, renameAsync, renamenxAsync, touchAsync, unlinkAsyncpublic RedissonAtomicLong(CommandAsyncExecutor commandExecutor, String name)
public long addAndGet(long delta)
RAtomicLongaddAndGet in interface RAtomicLongdelta - the value to addpublic RFuture<Long> addAndGetAsync(long delta)
addAndGetAsync in interface RAtomicLongAsyncpublic boolean compareAndSet(long expect,
long update)
RAtomicLong== the expected value.compareAndSet in interface RAtomicLongexpect - the expected valueupdate - the new valuepublic RFuture<Boolean> compareAndSetAsync(long expect, long update)
compareAndSetAsync in interface RAtomicLongAsyncpublic long getAndDelete()
RAtomicLonggetAndDelete in interface RAtomicLongpublic RFuture<Long> getAndDeleteAsync()
RAtomicLongAsyncgetAndDeleteAsync in interface RAtomicLongAsyncpublic long decrementAndGet()
RAtomicLongdecrementAndGet in interface RAtomicLongpublic RFuture<Long> decrementAndGetAsync()
decrementAndGetAsync in interface RAtomicLongAsyncpublic long get()
RAtomicLongget in interface RAtomicLongpublic RFuture<Long> getAsync()
getAsync in interface RAtomicLongAsyncpublic long getAndAdd(long delta)
RAtomicLonggetAndAdd in interface RAtomicLongdelta - the value to addpublic RFuture<Long> getAndAddAsync(long delta)
getAndAddAsync in interface RAtomicLongAsyncpublic long getAndSet(long newValue)
RAtomicLonggetAndSet in interface RAtomicLongnewValue - the new valuepublic RFuture<Long> getAndSetAsync(long newValue)
getAndSetAsync in interface RAtomicLongAsyncpublic long incrementAndGet()
RAtomicLongincrementAndGet in interface RAtomicLongpublic RFuture<Long> incrementAndGetAsync()
incrementAndGetAsync in interface RAtomicLongAsyncpublic long getAndIncrement()
RAtomicLonggetAndIncrement in interface RAtomicLongpublic RFuture<Long> getAndIncrementAsync()
getAndIncrementAsync in interface RAtomicLongAsyncpublic long getAndDecrement()
RAtomicLonggetAndDecrement in interface RAtomicLongpublic RFuture<Long> getAndDecrementAsync()
getAndDecrementAsync in interface RAtomicLongAsyncpublic void set(long newValue)
RAtomicLongset in interface RAtomicLongnewValue - the new valuepublic RFuture<Void> setAsync(long newValue)
setAsync in interface RAtomicLongAsyncpublic 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)
RExpirableexpireAt in interface RExpirabletimestamp - - expire date in milliseconds (Unix timestamp)true if the timeout was set and false if notpublic RFuture<Boolean> expireAtAsync(long timestamp)
RExpirableAsyncexpireAtAsync in interface RExpirableAsynctimestamp - - expire date in seconds (Unix timestamp)true if the timeout was set and false if notpublic boolean expireAt(Date timestamp)
RExpirableexpireAt in interface RExpirabletimestamp - - expire datetrue if the timeout was set and false if notpublic RFuture<Boolean> expireAtAsync(Date timestamp)
RExpirableAsyncexpireAtAsync 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 RExpirableAsyncCopyright © 2014–2018 The Redisson Project. All rights reserved.