V
- valuepublic class RedissonSet<V> extends RedissonObject implements RSet<V>, ScanIterator
Set
codec, commandExecutor, name
Constructor and Description |
---|
RedissonSet(Codec codec,
CommandAsyncExecutor commandExecutor,
String name,
RedissonClient redisson) |
RedissonSet(CommandAsyncExecutor commandExecutor,
String name,
RedissonClient redisson) |
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. |
int |
diff(String... names)
Diff sets specified by name and write to current set.
|
RFuture<Integer> |
diffAsync(String... names)
Diff sets specified by name and write to current set.
|
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.
|
RCountDownLatch |
getCountDownLatch(V value)
Returns
RCountDownLatch instance associated with value |
RLock |
getFairLock(V value)
Returns
RLock instance associated with value |
RLock |
getLock(V value)
Returns lock instance associated with
value |
RPermitExpirableSemaphore |
getPermitExpirableSemaphore(V value)
Returns
RPermitExpirableSemaphore instance associated with value |
RReadWriteLock |
getReadWriteLock(V value)
Returns
RReadWriteLock instance associated with value |
RSemaphore |
getSemaphore(V value)
Returns
RSemaphore instance associated with value |
int |
intersection(String... names)
Intersection sets specified by name and write to current set.
|
RFuture<Integer> |
intersectionAsync(String... names)
Intersection sets specified by name and write to current set.
|
boolean |
isEmpty() |
Iterator<V> |
iterator() |
Iterator<V> |
iterator(int count)
Returns elements iterator fetches elements in a batch.
|
Iterator<V> |
iterator(String pattern)
Returns elements iterator.
|
Iterator<V> |
iterator(String pattern,
int count)
Returns elements iterator fetches elements in a batch.
|
<KOut,VOut> |
mapReduce()
Returns
RMapReduce object associated with this object |
boolean |
move(String destination,
V member)
Move a member from this set to the given destination set in.
|
RFuture<Boolean> |
moveAsync(String destination,
V member)
Move a member from this set to the given destination set in async mode.
|
V |
random()
Returns random element
|
Set<V> |
random(int count)
Returns random elements from set limited by
count |
RFuture<V> |
randomAsync()
Returns random element from set
in async mode
|
RFuture<Set<V>> |
randomAsync(int count)
Returns random elements from set limited by
count |
Set<V> |
readAll()
Read all elements at once
|
RFuture<Set<V>> |
readAllAsync()
Read all elements at once
|
Set<V> |
readDiff(String... names)
Diff sets specified by name with current set.
|
RFuture<Set<V>> |
readDiffAsync(String... names)
Diff sets specified by name with current set.
|
Set<V> |
readIntersection(String... names)
Intersection sets specified by name with current set
without current set state change.
|
RFuture<Set<V>> |
readIntersectionAsync(String... names)
Intersection sets specified by name with current set.
|
Set<V> |
readSort(SortOrder order)
Read data in sorted view
|
Set<V> |
readSort(SortOrder order,
int offset,
int count)
Read data in sorted view
|
<T> Collection<T> |
readSort(String byPattern,
List<String> getPatterns,
SortOrder order)
Read data in sorted view
|
<T> Collection<T> |
readSort(String byPattern,
List<String> getPatterns,
SortOrder order,
int offset,
int count)
Read data in sorted view
|
Set<V> |
readSort(String byPattern,
SortOrder order)
Read data in sorted view
|
Set<V> |
readSort(String byPattern,
SortOrder order,
int offset,
int count)
Read data in sorted view
|
Set<V> |
readSortAlpha(SortOrder order)
Read data in sorted view lexicographically
|
Set<V> |
readSortAlpha(SortOrder order,
int offset,
int count)
Read data in sorted view lexicographically
|
<T> Collection<T> |
readSortAlpha(String byPattern,
List<String> getPatterns,
SortOrder order)
Read data in sorted view lexicographically
|
<T> Collection<T> |
readSortAlpha(String byPattern,
List<String> getPatterns,
SortOrder order,
int offset,
int count)
Read data in sorted view lexicographically
|
Set<V> |
readSortAlpha(String byPattern,
SortOrder order)
Read data in sorted view lexicographically
|
Set<V> |
readSortAlpha(String byPattern,
SortOrder order,
int offset,
int count)
Read data in sorted view lexicographically
|
RFuture<Set<V>> |
readSortAlphaAsync(SortOrder order)
Read data in sorted view lexicographically
|
RFuture<Set<V>> |
readSortAlphaAsync(SortOrder order,
int offset,
int count)
Read data in sorted view lexicographically
|
<T> RFuture<Collection<T>> |
readSortAlphaAsync(String byPattern,
List<String> getPatterns,
SortOrder order)
Read data in sorted view lexicographically
|
<T> RFuture<Collection<T>> |
readSortAlphaAsync(String byPattern,
List<String> getPatterns,
SortOrder order,
int offset,
int count)
Read data in sorted view lexicographically
|
RFuture<Set<V>> |
readSortAlphaAsync(String byPattern,
SortOrder order)
Read data in sorted view lexicographically
|
RFuture<Set<V>> |
readSortAlphaAsync(String byPattern,
SortOrder order,
int offset,
int count)
Read data in sorted view lexicographically
|
RFuture<Set<V>> |
readSortAsync(SortOrder order)
Read data in sorted view
|
RFuture<Set<V>> |
readSortAsync(SortOrder order,
int offset,
int count)
Read data in sorted view
|
<T> RFuture<Collection<T>> |
readSortAsync(String byPattern,
List<String> getPatterns,
SortOrder order)
Read data in sorted view
|
<T> RFuture<Collection<T>> |
readSortAsync(String byPattern,
List<String> getPatterns,
SortOrder order,
int offset,
int count)
Read data in sorted view
|
RFuture<Set<V>> |
readSortAsync(String byPattern,
SortOrder order)
Read data in sorted view
|
RFuture<Set<V>> |
readSortAsync(String byPattern,
SortOrder order,
int offset,
int count)
Read data in sorted view
|
Set<V> |
readUnion(String... names)
Union sets specified by name with current set
without current set state change.
|
RFuture<Set<V>> |
readUnionAsync(String... names)
Union sets specified by name with current set.
|
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
|
boolean |
remove(Object value) |
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.
|
V |
removeRandom()
Removes and returns random element
|
Set<V> |
removeRandom(int amount)
Removes and returns random elements limited by
amount |
RFuture<V> |
removeRandomAsync()
Removes and returns random element from set
in async mode
|
RFuture<Set<V>> |
removeRandomAsync(int amount)
Removes and returns random elements from set
in async mode
|
boolean |
retainAll(Collection<?> c) |
RFuture<Boolean> |
retainAllAsync(Collection<?> c)
Retains only the elements in this collection that are contained in the
specified collection.
|
ListScanResult<Object> |
scanIterator(String name,
RedisClient client,
long startPos,
String pattern,
int count) |
RFuture<ListScanResult<Object>> |
scanIteratorAsync(String name,
RedisClient client,
long startPos,
String pattern,
int count) |
int |
size() |
RFuture<Integer> |
sizeAsync()
Returns number of elements in this collection.
|
int |
sortTo(String destName,
SortOrder order)
Sort data and store to
destName list |
int |
sortTo(String destName,
SortOrder order,
int offset,
int count)
Sort data and store to
destName list |
int |
sortTo(String destName,
String byPattern,
List<String> getPatterns,
SortOrder order)
Sort data and store to
destName list |
int |
sortTo(String destName,
String byPattern,
List<String> getPatterns,
SortOrder order,
int offset,
int count)
Sort data and store to
destName list |
int |
sortTo(String destName,
String byPattern,
SortOrder order)
Sort data and store to
destName list |
int |
sortTo(String destName,
String byPattern,
SortOrder order,
int offset,
int count)
Sort data and store to
destName list |
RFuture<Integer> |
sortToAsync(String destName,
SortOrder order)
Sort data and store to
destName list |
RFuture<Integer> |
sortToAsync(String destName,
SortOrder order,
int offset,
int count)
Sort data and store to
destName list |
RFuture<Integer> |
sortToAsync(String destName,
String byPattern,
List<String> getPatterns,
SortOrder order)
Sort data and store to
destName list |
RFuture<Integer> |
sortToAsync(String destName,
String byPattern,
List<String> getPatterns,
SortOrder order,
int offset,
int count)
Sort data and store to
destName list |
RFuture<Integer> |
sortToAsync(String destName,
String byPattern,
SortOrder order)
Sort data and store to
destName list |
RFuture<Integer> |
sortToAsync(String destName,
String byPattern,
SortOrder order,
int offset,
int count)
Sort data and store to
destName list |
Stream<V> |
stream(int count)
Returns stream of elements fetches elements in a batch.
|
Stream<V> |
stream(String pattern)
Returns stream of elements.
|
Stream<V> |
stream(String pattern,
int count)
Returns stream of elements fetches elements in a batch.
|
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
String |
toString() |
int |
union(String... names)
Union sets specified by name and write to current set.
|
RFuture<Integer> |
unionAsync(String... names)
Union sets specified by name and write to current set.
|
addListener, addListenerAsync, copy, copyAsync, delete, 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
equals, hashCode, spliterator
parallelStream, removeIf, stream
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 RedissonSet(CommandAsyncExecutor commandExecutor, String name, RedissonClient redisson)
public RedissonSet(Codec codec, CommandAsyncExecutor commandExecutor, String name, RedissonClient redisson)
public <KOut,VOut> RCollectionMapReduce<V,KOut,VOut> mapReduce()
RSet
RMapReduce
object associated with this objectpublic int size()
public RFuture<Integer> sizeAsync()
RCollectionAsync
sizeAsync
in interface RCollectionAsync<V>
public boolean isEmpty()
public boolean contains(Object o)
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 ListScanResult<Object> scanIterator(String name, RedisClient client, long startPos, String pattern, int count)
scanIterator
in interface ScanIterator
public Iterator<V> iterator(int count)
RSet
count
param.public Iterator<V> iterator(String pattern)
RSet
pattern
is not null then only elements match this pattern are loaded.public Iterator<V> iterator(String pattern, int count)
RSet
count
param.
If pattern is not null then only elements match this pattern are loaded.public RFuture<Set<V>> readAllAsync()
RSetAsync
readAllAsync
in interface RSetAsync<V>
public Object[] toArray()
public <T> T[] toArray(T[] a)
public boolean add(V e)
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 V removeRandom()
RSet
removeRandom
in interface RSet<V>
public RFuture<V> removeRandomAsync()
RSetAsync
removeRandomAsync
in interface RSetAsync<V>
public Set<V> removeRandom(int amount)
RSet
amount
removeRandom
in interface RSet<V>
amount
- of random elementspublic RFuture<Set<V>> removeRandomAsync(int amount)
RSetAsync
removeRandomAsync
in interface RSetAsync<V>
amount
- of random valuespublic RFuture<V> randomAsync()
RSetAsync
randomAsync
in interface RSetAsync<V>
public Set<V> random(int count)
RSet
count
public RFuture<Set<V>> randomAsync(int count)
RSetAsync
count
randomAsync
in interface RSetAsync<V>
count
- - values amount to returnpublic 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 boolean remove(Object value)
remove
in interface Collection<V>
remove
in interface Set<V>
remove
in interface ScanIterator
public RFuture<Boolean> moveAsync(String destination, V member)
RSetAsync
public boolean move(String destination, V member)
RSet
public boolean containsAll(Collection<?> c)
containsAll
in interface Collection<V>
containsAll
in interface Set<V>
public 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 addAll(Collection<? extends V> c)
public 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 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 collectiontrue
if this collection changed as a result of the callpublic 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)
public int union(String... names)
RSet
public RFuture<Integer> unionAsync(String... names)
RSetAsync
unionAsync
in interface RSetAsync<V>
names
- - name of setspublic Set<V> readUnion(String... names)
RSet
public RFuture<Set<V>> readUnionAsync(String... names)
RSetAsync
readUnionAsync
in interface RSetAsync<V>
names
- - name of setspublic int diff(String... names)
RSet
public RFuture<Integer> diffAsync(String... names)
RSetAsync
public Set<V> readDiff(String... names)
RSet
public RFuture<Set<V>> readDiffAsync(String... names)
RSetAsync
readDiffAsync
in interface RSetAsync<V>
names
- - name of setspublic int intersection(String... names)
RSet
intersection
in interface RSet<V>
names
- - name of setspublic RFuture<Integer> intersectionAsync(String... names)
RSetAsync
intersectionAsync
in interface RSetAsync<V>
names
- - name of setspublic Set<V> readIntersection(String... names)
RSet
readIntersection
in interface RSet<V>
names
- - name of setspublic RFuture<Set<V>> readIntersectionAsync(String... names)
RSetAsync
readIntersectionAsync
in interface RSetAsync<V>
names
- - name of setspublic void clear()
public Set<V> readSort(SortOrder order)
RSortable
public RFuture<Set<V>> readSortAsync(SortOrder order)
RSortableAsync
readSortAsync
in interface RSortableAsync<Set<V>>
order
- for sorted datapublic Set<V> readSort(SortOrder order, int offset, int count)
RSortable
public RFuture<Set<V>> readSortAsync(SortOrder order, int offset, int count)
RSortableAsync
readSortAsync
in interface RSortableAsync<Set<V>>
order
- for sorted dataoffset
- of sorted datacount
- of sorted datapublic Set<V> readSort(String byPattern, SortOrder order)
RSortable
public RFuture<Set<V>> readSortAsync(String byPattern, SortOrder order)
RSortableAsync
readSortAsync
in interface RSortableAsync<Set<V>>
byPattern
- that is used to generate the keys that are used for sortingorder
- for sorted datapublic Set<V> readSort(String byPattern, SortOrder order, int offset, int count)
RSortable
public RFuture<Set<V>> readSortAsync(String byPattern, SortOrder order, int offset, int count)
RSortableAsync
readSortAsync
in interface RSortableAsync<Set<V>>
byPattern
- that is used to generate the keys that are used for sortingorder
- for sorted dataoffset
- of sorted datacount
- of sorted datapublic <T> Collection<T> readSort(String byPattern, List<String> getPatterns, SortOrder order)
RSortable
public <T> RFuture<Collection<T>> readSortAsync(String byPattern, List<String> getPatterns, SortOrder order)
RSortableAsync
readSortAsync
in interface RSortableAsync<Set<V>>
T
- object typebyPattern
- that is used to generate the keys that are used for sortinggetPatterns
- that is used to load values by keys in sorted vieworder
- for sorted datapublic <T> Collection<T> readSort(String byPattern, List<String> getPatterns, SortOrder order, int offset, int count)
RSortable
readSort
in interface RSortable<Set<V>>
T
- object typebyPattern
- that is used to generate the keys that are used for sortinggetPatterns
- that is used to load values by keys in sorted vieworder
- for sorted dataoffset
- of sorted datacount
- of sorted datapublic <T> RFuture<Collection<T>> readSortAsync(String byPattern, List<String> getPatterns, SortOrder order, int offset, int count)
RSortableAsync
readSortAsync
in interface RSortableAsync<Set<V>>
T
- object typebyPattern
- that is used to generate the keys that are used for sortinggetPatterns
- that is used to load values by keys in sorted vieworder
- for sorted dataoffset
- of sorted datacount
- of sorted datapublic Set<V> readSortAlpha(SortOrder order)
RSortable
readSortAlpha
in interface RSortable<Set<V>>
order
- for sorted datapublic Set<V> readSortAlpha(SortOrder order, int offset, int count)
RSortable
readSortAlpha
in interface RSortable<Set<V>>
order
- for sorted dataoffset
- of sorted datacount
- of sorted datapublic Set<V> readSortAlpha(String byPattern, SortOrder order)
RSortable
readSortAlpha
in interface RSortable<Set<V>>
byPattern
- that is used to generate the keys that are used for sortingorder
- for sorted datapublic Set<V> readSortAlpha(String byPattern, SortOrder order, int offset, int count)
RSortable
readSortAlpha
in interface RSortable<Set<V>>
byPattern
- that is used to generate the keys that are used for sortingorder
- for sorted dataoffset
- of sorted datacount
- of sorted datapublic <T> Collection<T> readSortAlpha(String byPattern, List<String> getPatterns, SortOrder order)
RSortable
readSortAlpha
in interface RSortable<Set<V>>
T
- object typebyPattern
- that is used to generate the keys that are used for sortinggetPatterns
- that is used to load values by keys in sorted vieworder
- for sorted datapublic <T> Collection<T> readSortAlpha(String byPattern, List<String> getPatterns, SortOrder order, int offset, int count)
RSortable
readSortAlpha
in interface RSortable<Set<V>>
T
- object typebyPattern
- that is used to generate the keys that are used for sortinggetPatterns
- that is used to load values by keys in sorted vieworder
- for sorted dataoffset
- of sorted datacount
- of sorted datapublic RFuture<Set<V>> readSortAlphaAsync(SortOrder order)
RSortableAsync
readSortAlphaAsync
in interface RSortableAsync<Set<V>>
order
- for sorted datapublic RFuture<Set<V>> readSortAlphaAsync(SortOrder order, int offset, int count)
RSortableAsync
readSortAlphaAsync
in interface RSortableAsync<Set<V>>
order
- for sorted dataoffset
- of sorted datacount
- of sorted datapublic RFuture<Set<V>> readSortAlphaAsync(String byPattern, SortOrder order)
RSortableAsync
readSortAlphaAsync
in interface RSortableAsync<Set<V>>
byPattern
- that is used to generate the keys that are used for sortingorder
- for sorted datapublic RFuture<Set<V>> readSortAlphaAsync(String byPattern, SortOrder order, int offset, int count)
RSortableAsync
readSortAlphaAsync
in interface RSortableAsync<Set<V>>
byPattern
- that is used to generate the keys that are used for sortingorder
- for sorted dataoffset
- of sorted datacount
- of sorted datapublic <T> RFuture<Collection<T>> readSortAlphaAsync(String byPattern, List<String> getPatterns, SortOrder order)
RSortableAsync
readSortAlphaAsync
in interface RSortableAsync<Set<V>>
T
- object typebyPattern
- that is used to generate the keys that are used for sortinggetPatterns
- that is used to load values by keys in sorted vieworder
- for sorted datapublic <T> RFuture<Collection<T>> readSortAlphaAsync(String byPattern, List<String> getPatterns, SortOrder order, int offset, int count)
RSortableAsync
readSortAlphaAsync
in interface RSortableAsync<Set<V>>
T
- object typebyPattern
- that is used to generate the keys that are used for sortinggetPatterns
- that is used to load values by keys in sorted vieworder
- for sorted dataoffset
- of sorted datacount
- of sorted datapublic int sortTo(String destName, SortOrder order)
RSortable
destName
listpublic RFuture<Integer> sortToAsync(String destName, SortOrder order)
RSortableAsync
destName
listsortToAsync
in interface RSortableAsync<Set<V>>
destName
- list object destinationorder
- for sorted datapublic int sortTo(String destName, SortOrder order, int offset, int count)
RSortable
destName
listpublic RFuture<Integer> sortToAsync(String destName, SortOrder order, int offset, int count)
RSortableAsync
destName
listsortToAsync
in interface RSortableAsync<Set<V>>
destName
- list object destinationorder
- for sorted dataoffset
- of sorted datacount
- of sorted datapublic int sortTo(String destName, String byPattern, SortOrder order, int offset, int count)
RSortable
destName
listpublic int sortTo(String destName, String byPattern, SortOrder order)
RSortable
destName
listpublic RFuture<Integer> sortToAsync(String destName, String byPattern, SortOrder order)
RSortableAsync
destName
listsortToAsync
in interface RSortableAsync<Set<V>>
destName
- list object destinationbyPattern
- that is used to generate the keys that are used for sortingorder
- for sorted datapublic RFuture<Integer> sortToAsync(String destName, String byPattern, SortOrder order, int offset, int count)
RSortableAsync
destName
listsortToAsync
in interface RSortableAsync<Set<V>>
destName
- list object destinationbyPattern
- that is used to generate the keys that are used for sortingorder
- for sorted dataoffset
- of sorted datacount
- of sorted datapublic int sortTo(String destName, String byPattern, List<String> getPatterns, SortOrder order)
RSortable
destName
listpublic RFuture<Integer> sortToAsync(String destName, String byPattern, List<String> getPatterns, SortOrder order)
RSortableAsync
destName
listsortToAsync
in interface RSortableAsync<Set<V>>
destName
- list object destinationbyPattern
- that is used to generate the keys that are used for sortinggetPatterns
- that is used to load values by keys in sorted vieworder
- for sorted datapublic int sortTo(String destName, String byPattern, List<String> getPatterns, SortOrder order, int offset, int count)
RSortable
destName
listsortTo
in interface RSortable<Set<V>>
destName
- list object destinationbyPattern
- that is used to generate the keys that are used for sortinggetPatterns
- that is used to load values by keys in sorted vieworder
- for sorted dataoffset
- of sorted datacount
- of sorted datapublic RFuture<Integer> sortToAsync(String destName, String byPattern, List<String> getPatterns, SortOrder order, int offset, int count)
RSortableAsync
destName
listsortToAsync
in interface RSortableAsync<Set<V>>
destName
- list object destinationbyPattern
- that is used to generate the keys that are used for sortinggetPatterns
- that is used to load values by keys in sorted vieworder
- for sorted dataoffset
- of sorted datacount
- of sorted datapublic RPermitExpirableSemaphore getPermitExpirableSemaphore(V value)
RSet
RPermitExpirableSemaphore
instance associated with value
getPermitExpirableSemaphore
in interface RSet<V>
value
- - set valuepublic RSemaphore getSemaphore(V value)
RSet
RSemaphore
instance associated with value
getSemaphore
in interface RSet<V>
value
- - set valuepublic RCountDownLatch getCountDownLatch(V value)
RSet
RCountDownLatch
instance associated with value
getCountDownLatch
in interface RSet<V>
value
- - set valuepublic RLock getFairLock(V value)
RSet
RLock
instance associated with value
getFairLock
in interface RSet<V>
value
- - set valuepublic RLock getLock(V value)
RSet
value
public RReadWriteLock getReadWriteLock(V value)
RSet
RReadWriteLock
instance associated with value
getReadWriteLock
in interface RSet<V>
value
- - set valuepublic RFuture<ListScanResult<Object>> scanIteratorAsync(String name, RedisClient client, long startPos, String pattern, int count)
scanIteratorAsync
in interface ScanIterator
public Stream<V> stream(int count)
RSet
count
param.public Stream<V> stream(String pattern, int count)
RSet
count
param.
If pattern is not null then only elements match this pattern are loaded.public Stream<V> stream(String pattern)
RSet
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 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
Copyright © 2014–2020 Redisson. All rights reserved.