V
- value typepublic class RedissonDelayedQueue<V> extends RedissonObject implements RDelayedQueue<V>
codec, commandExecutor
Modifier | Constructor and Description |
---|---|
protected |
RedissonDelayedQueue(QueueTransferService queueTransferService,
Codec codec,
CommandAsyncExecutor commandExecutor,
String name) |
Modifier and Type | Method and Description |
---|---|
boolean |
add(V e) |
boolean |
addAll(Collection<? extends V> c) |
RFuture<Boolean> |
addAllAsync(Collection<? extends V> c)
Adds all elements contained in the specified collection
|
RFuture<Boolean> |
addAsync(V e)
Adds element into this collection.
|
void |
clear() |
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 |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
RFuture<Boolean> |
containsAllAsync(Collection<?> c)
Returns
true if this collection contains all of the elements
in the specified collection. |
RFuture<Boolean> |
containsAsync(Object o)
Returns
true if this collection contains encoded state of the specified element. |
RFuture<Boolean> |
deleteAsync()
Delete object in async mode
|
void |
destroy()
Destroys object when it's not necessary anymore.
|
V |
element() |
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.
|
boolean |
isEmpty() |
Iterator<V> |
iterator() |
boolean |
offer(V e) |
void |
offer(V e,
long delay,
TimeUnit timeUnit)
Inserts element into this queue with
specified transfer delay to destination queue.
|
RFuture<Boolean> |
offerAsync(V e) |
RFuture<Void> |
offerAsync(V e,
long delay,
TimeUnit timeUnit)
Inserts element into this queue with
specified transfer delay to destination queue.
|
V |
peek() |
RFuture<V> |
peekAsync() |
V |
poll() |
RFuture<V> |
pollAsync() |
V |
pollLastAndOfferFirstTo(String dequeName) |
RFuture<V> |
pollLastAndOfferFirstToAsync(String queueName) |
List<V> |
readAll() |
RFuture<List<V>> |
readAllAsync() |
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
|
V |
remove() |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
RFuture<Boolean> |
removeAllAsync(Collection<?> c)
Removes all of this collection's elements that are also contained in the
specified collection.
|
RFuture<Boolean> |
removeAsync(Object o)
Removes a single instance of the specified element from this
collection, if it is present.
|
protected RFuture<Boolean> |
removeAsync(Object o,
int count) |
boolean |
retainAll(Collection<?> c) |
RFuture<Boolean> |
retainAllAsync(Collection<?> c)
Retains only the elements in this collection that are contained in the
specified collection.
|
int |
size() |
RFuture<Integer> |
sizeAsync()
Returns number of elements in this collection.
|
RFuture<Long> |
sizeInMemoryAsync()
Returns size of object in Redis memory
|
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
await, copy, copyAsync, delete, dump, dumpAsync, encode, encode, encode, encodeMapKey, encodeMapKeys, encodeMapValue, encodeMapValues, get, getCodec, getName, getName, isExists, isExistsAsync, migrate, migrateAsync, move, moveAsync, prefixName, rename, renameAsync, renamenx, renamenxAsync, restore, restore, restoreAndReplace, restoreAndReplace, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, sizeInMemory, sizeInMemoryAsync, suffixName, toSeconds, touch, touchAsync, unlink, unlinkAsync
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
equals, hashCode, parallelStream, removeIf, spliterator, stream
clearExpire, expire, expireAt, expireAt, remainTimeToLive
copy, delete, dump, getCodec, getName, isExists, migrate, move, rename, renamenx, restore, restore, restoreAndReplace, restoreAndReplace, sizeInMemory, touch, unlink
expireAtAsync, remainTimeToLiveAsync
copyAsync, dumpAsync, isExistsAsync, migrateAsync, moveAsync, renameAsync, renamenxAsync, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, touchAsync, unlinkAsync
protected RedissonDelayedQueue(QueueTransferService queueTransferService, Codec codec, CommandAsyncExecutor commandExecutor, String name)
public void offer(V e, long delay, TimeUnit timeUnit)
RDelayedQueue
offer
in interface RDelayedQueue<V>
e
- the element to adddelay
- for transitiontimeUnit
- for delaypublic RFuture<Void> offerAsync(V e, long delay, TimeUnit timeUnit)
RDelayedQueue
offerAsync
in interface RDelayedQueue<V>
e
- the element to adddelay
- for transitiontimeUnit
- for delaypublic boolean add(V e)
public int size()
size
in interface Collection<V>
public boolean isEmpty()
isEmpty
in interface Collection<V>
public boolean contains(Object o)
contains
in interface Collection<V>
public Object[] toArray()
toArray
in interface Collection<V>
public <T> T[] toArray(T[] a)
toArray
in interface Collection<V>
public RFuture<List<V>> readAllAsync()
readAllAsync
in interface RQueueAsync<V>
public boolean remove(Object o)
remove
in interface Collection<V>
public RFuture<Boolean> removeAsync(Object o)
RCollectionAsync
removeAsync
in interface RCollectionAsync<V>
o
- element to be removed from this collection, if presenttrue
if an element was removed as a result of this callpublic RFuture<Boolean> containsAllAsync(Collection<?> c)
RCollectionAsync
true
if this collection contains all of the elements
in the specified collection.containsAllAsync
in interface RCollectionAsync<V>
c
- collection to be checked for containment in this collectiontrue
if this collection contains all of the elements
in the specified collectionpublic boolean containsAll(Collection<?> c)
containsAll
in interface Collection<V>
public boolean addAll(Collection<? extends V> c)
addAll
in interface Collection<V>
public RFuture<Boolean> removeAllAsync(Collection<?> c)
RCollectionAsync
removeAllAsync
in interface RCollectionAsync<V>
c
- collection containing elements to be removed from this collectiontrue
if this collection changed as a result of the
callpublic boolean removeAll(Collection<?> c)
removeAll
in interface Collection<V>
public boolean retainAll(Collection<?> c)
retainAll
in interface Collection<V>
public RFuture<Boolean> retainAllAsync(Collection<?> c)
RCollectionAsync
retainAllAsync
in interface RCollectionAsync<V>
c
- collection containing elements to be retained in this collectiontrue
if this collection changed as a result of the callpublic void clear()
clear
in interface Collection<V>
public RFuture<Boolean> deleteAsync()
RObjectAsync
deleteAsync
in interface RObjectAsync
deleteAsync
in class RedissonObject
true
if object was deleted false
if notpublic RFuture<Long> sizeInMemoryAsync()
RObjectAsync
sizeInMemoryAsync
in interface RObjectAsync
sizeInMemoryAsync
in class RedissonObject
public 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 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 RFuture<Boolean> clearExpireAsync()
RExpirableAsync
clearExpireAsync
in interface RExpirableAsync
true
if the timeout was cleared and false
if notpublic RFuture<V> peekAsync()
peekAsync
in interface RQueueAsync<V>
public RFuture<V> pollAsync()
pollAsync
in interface RQueueAsync<V>
public RFuture<Boolean> offerAsync(V e)
offerAsync
in interface RQueueAsync<V>
public RFuture<V> pollLastAndOfferFirstToAsync(String queueName)
pollLastAndOfferFirstToAsync
in interface RQueueAsync<V>
public RFuture<Boolean> containsAsync(Object o)
RCollectionAsync
true
if this collection contains encoded state of the specified element.containsAsync
in interface RCollectionAsync<V>
o
- element whose presence in this collection is to be testedtrue
if this collection contains the specified
element and false
otherwisepublic RFuture<Integer> sizeAsync()
RCollectionAsync
sizeAsync
in interface RCollectionAsync<V>
public RFuture<Boolean> addAsync(V e)
RCollectionAsync
addAsync
in interface RCollectionAsync<V>
e
- - element to addtrue
if an element was added
and false
if it is already presentpublic RFuture<Boolean> addAllAsync(Collection<? extends V> c)
RCollectionAsync
addAllAsync
in interface RCollectionAsync<V>
c
- - collection of elements to addtrue
if at least one element was added
and false
if all elements are already presentpublic V pollLastAndOfferFirstTo(String dequeName)
pollLastAndOfferFirstTo
in interface RQueue<V>
public void destroy()
RDestroyable
destroy
in interface RDestroyable
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 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 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 long remainTimeToLive()
RExpirable
remainTimeToLive
in interface RExpirable
public RFuture<Long> remainTimeToLiveAsync()
RExpirableAsync
remainTimeToLiveAsync
in interface RExpirableAsync
Copyright © 2014–2019 The Redisson Project. All rights reserved.