V
- the type of elements held in this collectionpublic class RedissonList<V> extends Object implements RList<V>
List
Modifier and Type | Field and Description |
---|---|
static RedisCommand<Boolean> |
EVAL_BOOLEAN_ARGS2 |
Constructor and Description |
---|
RedissonList(Codec codec,
CommandAsyncExecutor commandExecutor,
String name) |
RedissonList(CommandAsyncExecutor commandExecutor,
String name) |
Modifier and Type | Method and Description |
---|---|
void |
add(int index,
V element) |
boolean |
add(V e) |
Integer |
addAfter(V elementToFind,
V element)
Add
element after elementToFind |
RFuture<Integer> |
addAfterAsync(V elementToFind,
V element)
Add
element after elementToFind |
boolean |
addAll(Collection<? extends V> c) |
boolean |
addAll(int index,
Collection<? extends V> coll) |
RFuture<Boolean> |
addAllAsync(Collection<? extends V> c) |
RFuture<Boolean> |
addAllAsync(int index,
Collection<? extends V> coll) |
RFuture<Boolean> |
addAsync(V e) |
protected <T> RFuture<T> |
addAsync(V e,
RedisCommand<T> command) |
Integer |
addBefore(V elementToFind,
V element)
Add
element before elementToFind |
RFuture<Integer> |
addBeforeAsync(V elementToFind,
V element)
Add
element before elementToFind |
protected boolean |
await(RFuture<?> future,
long timeout,
TimeUnit timeoutUnit) |
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 the specified element.
|
boolean |
delete()
Deletes the object
|
RFuture<Boolean> |
deleteAsync()
Delete object in async mode
|
protected byte[] |
encode(Object value) |
protected byte[] |
encodeMapKey(Object value) |
protected byte[] |
encodeMapValue(Object value) |
boolean |
equals(Object o) |
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.
|
void |
fastRemove(int index) |
RFuture<Void> |
fastRemoveAsync(long index) |
void |
fastSet(int index,
V element)
Set
element at index . |
RFuture<Void> |
fastSetAsync(int index,
V element)
Set
element at index . |
V |
get(int index) |
protected <V> V |
get(RFuture<V> future) |
RFuture<V> |
getAsync(int index) |
Codec |
getCodec()
Returns the underlying Codec used by this RObject
|
String |
getName()
Returns name of object
|
int |
hashCode() |
int |
indexOf(Object o) |
RFuture<Integer> |
indexOfAsync(Object o) |
<R> RFuture<R> |
indexOfAsync(Object o,
Convertor<R> convertor) |
boolean |
isEmpty() |
boolean |
isExists()
Check object existence
|
RFuture<Boolean> |
isExistsAsync()
Check object existence in async mode.
|
Iterator<V> |
iterator() |
int |
lastIndexOf(Object o) |
RFuture<Integer> |
lastIndexOfAsync(Object o) |
<R> RFuture<R> |
lastIndexOfAsync(Object o,
Convertor<R> convertor) |
ListIterator<V> |
listIterator() |
ListIterator<V> |
listIterator(int ind) |
void |
migrate(String host,
int port,
int database)
Transfer an object from source Redis instance to destination Redis instance
|
RFuture<Void> |
migrateAsync(String host,
int port,
int database)
Transfer an object from source Redis instance to destination Redis instance
in async mode
|
boolean |
move(int database)
Move object to another database
|
RFuture<Boolean> |
moveAsync(int database)
Move object to another database in async mode
|
protected <V> RPromise<V> |
newPromise() |
protected <V> RFuture<V> |
newSucceededFuture(V result) |
List<V> |
readAll()
Read all elements at once
|
RFuture<List<V>> |
readAllAsync()
Read all elements at once
|
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.
|
V |
remove(int index) |
V |
remove(long index) |
boolean |
remove(Object o) |
protected boolean |
remove(Object o,
int count) |
boolean |
removeAll(Collection<?> c) |
RFuture<Boolean> |
removeAllAsync(Collection<?> c)
Removes all of this collection's elements that are also contained in the
specified collection (optional operation).
|
RFuture<V> |
removeAsync(long index) |
RFuture<Boolean> |
removeAsync(Object o)
Removes a single instance of the specified element from this
collection, if it is present (optional operation).
|
protected RFuture<Boolean> |
removeAsync(Object o,
int count) |
void |
rename(String newName)
Rename current object key to
newName |
RFuture<Void> |
renameAsync(String newName)
Rename current object key to
newName
in async mode |
boolean |
renamenx(String newName)
Rename current object key to
newName
only if new key is not exists |
RFuture<Boolean> |
renamenxAsync(String newName)
Rename current object key to
newName
in async mode only if new key is not exists |
boolean |
retainAll(Collection<?> c) |
RFuture<Boolean> |
retainAllAsync(Collection<?> c)
Retains only the elements in this collection that are contained in the
specified collection (optional operation).
|
V |
set(int index,
V element) |
RFuture<V> |
setAsync(int index,
V element) |
int |
size() |
RFuture<Integer> |
sizeAsync()
Returns the number of elements in this collection.
|
RList<V> |
subList(int fromIndex,
int toIndex) |
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
String |
toString() |
void |
trim(int fromIndex,
int toIndex)
Trim list and remains elements only in specified range
fromIndex, inclusive, and toIndex, inclusive.
|
RFuture<Void> |
trimAsync(long fromIndex,
long toIndex)
Trim list and remains elements only in specified range
fromIndex, inclusive, and toIndex, inclusive.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
clearExpire, expire, expireAt, expireAt, remainTimeToLive
delete, getCodec, getName, isExists, migrate, move, rename, renamenx
clearExpireAsync, expireAsync, expireAtAsync, expireAtAsync, remainTimeToLiveAsync
deleteAsync, isExistsAsync, migrateAsync, moveAsync, renameAsync, renamenxAsync
public static final RedisCommand<Boolean> EVAL_BOOLEAN_ARGS2
public RedissonList(CommandAsyncExecutor commandExecutor, String name)
public RedissonList(Codec codec, CommandAsyncExecutor commandExecutor, String name)
public int size()
public RFuture<Integer> sizeAsync()
RCollectionAsync
sizeAsync
in interface RCollectionAsync<V>
public boolean isEmpty()
public boolean contains(Object o)
public Object[] toArray()
public RFuture<List<V>> readAllAsync()
RListAsync
readAllAsync
in interface RListAsync<V>
public <T> T[] toArray(T[] a)
public boolean add(V e)
public RFuture<Boolean> addAsync(V e)
addAsync
in interface RCollectionAsync<V>
protected <T> RFuture<T> addAsync(V e, RedisCommand<T> command)
public boolean remove(Object o)
public RFuture<Boolean> removeAsync(Object o)
RCollectionAsync
removeAsync
in interface RCollectionAsync<V>
o
- element to be removed from this collection, if presentprotected boolean remove(Object o, int count)
public RFuture<Boolean> containsAllAsync(Collection<?> c)
RCollectionAsync
containsAllAsync
in interface RCollectionAsync<V>
c
- collection to be checked for containment in this collectionpublic boolean containsAll(Collection<?> c)
containsAll
in interface Collection<V>
containsAll
in interface List<V>
public boolean addAll(Collection<? extends V> c)
public RFuture<Boolean> addAllAsync(Collection<? extends V> c)
addAllAsync
in interface RCollectionAsync<V>
public RFuture<Boolean> addAllAsync(int index, Collection<? extends V> coll)
addAllAsync
in interface RListAsync<V>
public boolean addAll(int index, Collection<? extends V> coll)
public RFuture<Boolean> removeAllAsync(Collection<?> c)
RCollectionAsync
removeAllAsync
in interface RCollectionAsync<V>
c
- collection containing elements to be removed from this collectionpublic boolean removeAll(Collection<?> c)
public boolean retainAll(Collection<?> c)
public RFuture<Boolean> retainAllAsync(Collection<?> c)
RCollectionAsync
retainAllAsync
in interface RCollectionAsync<V>
c
- collection containing elements to be retained in this collectionpublic void clear()
public RFuture<V> getAsync(int index)
getAsync
in interface RListAsync<V>
public RFuture<V> setAsync(int index, V element)
setAsync
in interface RListAsync<V>
public RFuture<Void> fastSetAsync(int index, V element)
RListAsync
element
at index
.
Works faster than RListAsync.setAsync(int, Object)
but
doesn't return previous element.fastSetAsync
in interface RListAsync<V>
index
- - index of objectelement
- - objectpublic V remove(long index)
public RFuture<V> removeAsync(long index)
removeAsync
in interface RListAsync<V>
public void fastRemove(int index)
fastRemove
in interface RList<V>
public RFuture<Void> fastRemoveAsync(long index)
fastRemoveAsync
in interface RListAsync<V>
public RFuture<Boolean> containsAsync(Object o)
RCollectionAsync
containsAsync
in interface RCollectionAsync<V>
o
- element whose presence in this collection is to be testedpublic RFuture<Integer> indexOfAsync(Object o)
indexOfAsync
in interface RListAsync<V>
public int lastIndexOf(Object o)
lastIndexOf
in interface List<V>
public RFuture<Integer> lastIndexOfAsync(Object o)
lastIndexOfAsync
in interface RListAsync<V>
public void trim(int fromIndex, int toIndex)
RList
public RFuture<Void> trimAsync(long fromIndex, long toIndex)
RListAsync
trimAsync
in interface RListAsync<V>
fromIndex
- - from indextoIndex
- - to indexpublic ListIterator<V> listIterator()
listIterator
in interface List<V>
public ListIterator<V> listIterator(int ind)
listIterator
in interface List<V>
public boolean equals(Object o)
public int hashCode()
public RFuture<Integer> addAfterAsync(V elementToFind, V element)
RListAsync
element
after elementToFind
addAfterAsync
in interface RListAsync<V>
elementToFind
- - object to findelement
- - object to addpublic RFuture<Integer> addBeforeAsync(V elementToFind, V element)
RListAsync
element
before elementToFind
addBeforeAsync
in interface RListAsync<V>
elementToFind
- - object to findelement
- - object to addpublic Integer addAfter(V elementToFind, V element)
RList
element
after elementToFind
public Integer addBefore(V elementToFind, V element)
RList
element
before elementToFind
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 secondsprotected boolean await(RFuture<?> future, long timeout, TimeUnit timeoutUnit) throws InterruptedException
InterruptedException
protected <V> V get(RFuture<V> future)
protected <V> RPromise<V> newPromise()
protected <V> RFuture<V> newSucceededFuture(V result)
public void rename(String newName)
RObject
newName
public RFuture<Void> renameAsync(String newName)
RObjectAsync
newName
in async moderenameAsync
in interface RObjectAsync
newName
- - new name of objectpublic void migrate(String host, int port, int database)
RObject
public RFuture<Void> migrateAsync(String host, int port, int database)
RObjectAsync
migrateAsync
in interface RObjectAsync
host
- - destination hostport
- - destination portdatabase
- - destination databasepublic boolean move(int database)
RObject
public RFuture<Boolean> moveAsync(int database)
RObjectAsync
moveAsync
in interface RObjectAsync
database
- - number of Redis databasetrue
if key was moved false
if notpublic boolean renamenx(String newName)
RObject
newName
only if new key is not existspublic RFuture<Boolean> renamenxAsync(String newName)
RObjectAsync
newName
in async mode only if new key is not existsrenamenxAsync
in interface RObjectAsync
newName
- - new name of objecttrue
if object has been renamed successfully and false
otherwisepublic boolean delete()
RObject
public RFuture<Boolean> deleteAsync()
RObjectAsync
deleteAsync
in interface RObjectAsync
true
if object was deleted false
if notpublic boolean isExists()
RObject
public RFuture<Boolean> isExistsAsync()
RObjectAsync
isExistsAsync
in interface RObjectAsync
true
if object exists and false
otherwisepublic Codec getCodec()
RObject
protected byte[] encode(Object value)
protected byte[] encodeMapKey(Object value)
protected byte[] encodeMapValue(Object value)
Copyright © 2014–2016 The Redisson Project. All rights reserved.