public class RedissonAtomicLong extends RedissonObject implements RAtomicLong
AtomicLong
codec, commandExecutor, name
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)
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(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)
Atomically sets the value to the given updated value
only if the current value
== the expected value. |
long |
decrementAndGet()
Atomically decrements the current value by one.
|
RFuture<Long> |
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) |
long |
get()
Returns current value.
|
long |
getAndAdd(long delta)
Atomically adds the given value to the current value.
|
RFuture<Long> |
getAndAddAsync(long delta)
Atomically adds the given value to the current value.
|
long |
getAndDecrement()
Atomically decrements by one the current value.
|
RFuture<Long> |
getAndDecrementAsync()
Atomically decrements by one the current value.
|
long |
getAndDelete()
Gets and deletes object
|
RFuture<Long> |
getAndDeleteAsync()
Returns and deletes object
|
long |
getAndIncrement()
Atomically increments the current value by one.
|
RFuture<Long> |
getAndIncrementAsync()
Atomically increments the current value by one.
|
long |
getAndSet(long newValue)
Atomically sets the given value and returns the old value.
|
RFuture<Long> |
getAndSetAsync(long newValue)
Atomically sets the given value and returns the old value.
|
RFuture<Long> |
getAsync()
Returns current value.
|
long |
incrementAndGet()
Atomically increments the current value by one.
|
RFuture<Long> |
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(long newValue)
Atomically sets the given value.
|
RFuture<Void> |
setAsync(long newValue)
Atomically sets the given value.
|
String |
toString() |
addListener, addListenerAsync, copy, copyAsync, delete, deleteAsync, deleteAsync, dump, dumpAsync, encode, encode, encode, encodeMapKey, encodeMapKeys, encodeMapValue, encodeMapValues, get, getCodec, getLockByMapKey, getLockByValue, getName, getName, isExists, isExistsAsync, migrate, migrateAsync, move, moveAsync, prefixName, removeListener, removeListenerAsync, 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 RedissonAtomicLong(CommandAsyncExecutor commandExecutor, String name)
public long addAndGet(long delta)
RAtomicLong
addAndGet
in interface RAtomicLong
delta
- the value to addpublic RFuture<Long> addAndGetAsync(long delta)
RAtomicLongAsync
addAndGetAsync
in interface RAtomicLongAsync
delta
- the value to addpublic boolean compareAndSet(long expect, long update)
RAtomicLong
==
the expected value.compareAndSet
in interface RAtomicLong
expect
- the expected valueupdate
- the new valuepublic RFuture<Boolean> compareAndSetAsync(long expect, long update)
RAtomicLongAsync
==
the expected value.compareAndSetAsync
in interface RAtomicLongAsync
expect
- the expected valueupdate
- the new valuepublic long getAndDelete()
RAtomicLong
getAndDelete
in interface RAtomicLong
public RFuture<Long> getAndDeleteAsync()
RAtomicLongAsync
getAndDeleteAsync
in interface RAtomicLongAsync
public long decrementAndGet()
RAtomicLong
decrementAndGet
in interface RAtomicLong
public RFuture<Long> decrementAndGetAsync()
RAtomicLongAsync
decrementAndGetAsync
in interface RAtomicLongAsync
public long get()
RAtomicLong
get
in interface RAtomicLong
public RFuture<Long> getAsync()
RAtomicLongAsync
getAsync
in interface RAtomicLongAsync
public long getAndAdd(long delta)
RAtomicLong
getAndAdd
in interface RAtomicLong
delta
- the value to addpublic RFuture<Long> getAndAddAsync(long delta)
RAtomicLongAsync
getAndAddAsync
in interface RAtomicLongAsync
delta
- the value to addpublic long getAndSet(long newValue)
RAtomicLong
getAndSet
in interface RAtomicLong
newValue
- the new valuepublic RFuture<Long> getAndSetAsync(long newValue)
RAtomicLongAsync
getAndSetAsync
in interface RAtomicLongAsync
newValue
- the new valuepublic long incrementAndGet()
RAtomicLong
incrementAndGet
in interface RAtomicLong
public RFuture<Long> incrementAndGetAsync()
RAtomicLongAsync
incrementAndGetAsync
in interface RAtomicLongAsync
public long getAndIncrement()
RAtomicLong
getAndIncrement
in interface RAtomicLong
public RFuture<Long> getAndIncrementAsync()
RAtomicLongAsync
getAndIncrementAsync
in interface RAtomicLongAsync
public long getAndDecrement()
RAtomicLong
getAndDecrement
in interface RAtomicLong
public RFuture<Long> getAndDecrementAsync()
RAtomicLongAsync
getAndDecrementAsync
in interface RAtomicLongAsync
public void set(long newValue)
RAtomicLong
set
in interface RAtomicLong
newValue
- the new valuepublic RFuture<Void> setAsync(long newValue)
RAtomicLongAsync
setAsync
in interface RAtomicLongAsync
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.