V
- value typepublic class RedissonBucket<V> extends RedissonObject implements RBucket<V>
codec, commandExecutor
Constructor and Description |
---|
RedissonBucket(Codec codec,
CommandAsyncExecutor connectionManager,
String name) |
RedissonBucket(CommandAsyncExecutor connectionManager,
String name) |
Modifier and Type | Method and Description |
---|---|
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(V expect,
V update) |
RFuture<Boolean> |
compareAndSetAsync(V expect,
V update) |
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.
|
V |
get() |
V |
getAndSet(V newValue) |
RFuture<V> |
getAndSetAsync(V newValue) |
RFuture<V> |
getAsync() |
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(V value) |
void |
set(V value,
long timeToLive,
TimeUnit timeUnit) |
RFuture<Void> |
setAsync(V value) |
RFuture<Void> |
setAsync(V value,
long timeToLive,
TimeUnit timeUnit) |
long |
size()
Returns size of object in bytes
|
RFuture<Long> |
sizeAsync()
Returns size of object in bytes
|
boolean |
trySet(V value) |
boolean |
trySet(V value,
long timeToLive,
TimeUnit timeUnit) |
RFuture<Boolean> |
trySetAsync(V value) |
RFuture<Boolean> |
trySetAsync(V value,
long timeToLive,
TimeUnit timeUnit) |
await, delete, deleteAsync, encode, encode, encode, encodeMapKey, encodeMapKeys, encodeMapValue, encodeMapValues, get, getCodec, getName, getName, isExists, isExistsAsync, migrate, migrateAsync, move, moveAsync, newPromise, newSucceededFuture, prefixName, rename, renameAsync, renamenx, renamenxAsync, suffixName, touch, touchAsync, unlink, unlinkAsync
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
clearExpire, expire, expireAt, expireAt, remainTimeToLive
delete, getCodec, getName, isExists, migrate, move, rename, renamenx, touch, unlink
clearExpireAsync, expireAsync, expireAtAsync, expireAtAsync, remainTimeToLiveAsync
deleteAsync, isExistsAsync, migrateAsync, moveAsync, renameAsync, renamenxAsync, touchAsync, unlinkAsync
public RedissonBucket(CommandAsyncExecutor connectionManager, String name)
public RedissonBucket(Codec codec, CommandAsyncExecutor connectionManager, String name)
public boolean compareAndSet(V expect, V update)
compareAndSet
in interface RBucket<V>
public RFuture<Boolean> compareAndSetAsync(V expect, V update)
compareAndSetAsync
in interface RBucketAsync<V>
public RFuture<V> getAndSetAsync(V newValue)
getAndSetAsync
in interface RBucketAsync<V>
public RFuture<V> getAsync()
getAsync
in interface RBucketAsync<V>
public long size()
RBucket
public RFuture<Long> sizeAsync()
RBucketAsync
sizeAsync
in interface RBucketAsync<V>
public RFuture<Void> setAsync(V value, long timeToLive, TimeUnit timeUnit)
setAsync
in interface RBucketAsync<V>
public RFuture<Boolean> trySetAsync(V value)
trySetAsync
in interface RBucketAsync<V>
public RFuture<Boolean> trySetAsync(V value, long timeToLive, TimeUnit timeUnit)
trySetAsync
in interface RBucketAsync<V>
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.