V - valuepublic class RedissonSetMultimapValues<V> extends RedissonObject implements RSet<V>
codec, commandExecutor| Constructor and Description |
|---|
RedissonSetMultimapValues(Codec codec,
CommandAsyncExecutor commandExecutor,
String name,
String timeoutSetName,
Object key) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(V e) |
boolean |
addAll(Collection<? extends V> c) |
RFuture<Boolean> |
addAllAsync(Collection<? extends V> c) |
RFuture<Boolean> |
addAsync(V e) |
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.
|
RFuture<Boolean> |
deleteAsync()
Delete object in async mode
|
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.
|
RLock |
getLock(V value)
Returns lock 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 an iterator over elements in this set.
|
Iterator<V> |
iterator(String pattern)
Returns iterator over elements in this set matches
pattern. |
Iterator<V> |
iterator(String pattern,
int count)
Returns an iterator over elements in this set.
|
<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 from set
|
RFuture<V> |
randomAsync()
Returns random element from set
in async mode
|
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
|
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 (optional operation).
|
RFuture<Boolean> |
removeAsync(Object o)
Removes a single instance of the specified element from this
collection, if it is present (optional operation).
|
V |
removeRandom()
Removes and returns random element from set
|
Set<V> |
removeRandom(int amount)
Removes and returns random elements from set
|
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
|
RFuture<Void> |
renameAsync(String newName)
Rename current object key to
newName
in async mode |
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).
|
int |
size() |
RFuture<Integer> |
sizeAsync()
Returns the 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 |
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
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.
|
await, copy, copyAsync, delete, encode, encode, encode, encodeMapKey, encodeMapKeys, encodeMapValue, encodeMapValues, get, getCodec, getName, getName, isExists, isExistsAsync, migrate, migrateAsync, move, moveAsync, prefixName, rename, renamenx, suffixName, toSeconds, touch, touchAsync, unlink, unlinkAsyncclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitequals, hashCode, spliteratorparallelStream, removeIf, streamclearExpire, expire, expireAt, expireAt, remainTimeToLivecopy, delete, getCodec, getName, isExists, migrate, move, rename, renamenx, touch, unlinkexpireAtAsynccopyAsync, isExistsAsync, migrateAsync, moveAsync, touchAsync, unlinkAsyncpublic RedissonSetMultimapValues(Codec codec, CommandAsyncExecutor commandExecutor, String name, String timeoutSetName, Object key)
public int size()
public <KOut,VOut> RCollectionMapReduce<V,KOut,VOut> mapReduce()
RSetRMapReduce object associated with this objectpublic RFuture<Boolean> clearExpireAsync()
RExpirableAsyncclearExpireAsync in interface RExpirableAsynctrue if the timeout was cleared and false if notpublic RFuture<Boolean> expireAsync(long timeToLive, TimeUnit timeUnit)
RExpirableAsyncexpireAsync in interface RExpirableAsynctimeToLive - - timeout before object will be deletedtimeUnit - - timeout time unittrue if the timeout was set and false if notpublic RFuture<Boolean> expireAtAsync(long timestamp)
RExpirableAsyncexpireAtAsync in interface RExpirableAsynctimestamp - - expire date in seconds (Unix timestamp)true if the timeout was set and false if notpublic RFuture<Long> remainTimeToLiveAsync()
RExpirableAsyncremainTimeToLiveAsync in interface RExpirableAsyncpublic RFuture<Void> renameAsync(String newName)
RObjectAsyncnewName
in async moderenameAsync in interface RObjectAsyncrenameAsync in class RedissonObjectnewName - - new name of objectpublic RFuture<Boolean> renamenxAsync(String newName)
RObjectAsyncnewName
in async mode only if new key is not existsrenamenxAsync in interface RObjectAsyncrenamenxAsync in class RedissonObjectnewName - - new name of objecttrue if object has been renamed successfully and false otherwisepublic RFuture<Boolean> deleteAsync()
RObjectAsyncdeleteAsync in interface RObjectAsyncdeleteAsync in class RedissonObjecttrue if object was deleted false if notpublic RFuture<Integer> sizeAsync()
RCollectionAsyncsizeAsync in interface RCollectionAsync<V>public boolean isEmpty()
public boolean contains(Object o)
public RFuture<Boolean> containsAsync(Object o)
RCollectionAsynccontainsAsync in interface RCollectionAsync<V>o - element whose presence in this collection is to be testedpublic Iterator<V> iterator(int count)
RSetcount param.public Iterator<V> iterator(String pattern)
RSetpattern.public Iterator<V> iterator(String pattern, int count)
RSetcount param.
If pattern is not null then only elements match this pattern are loaded.public RFuture<Set<V>> readAllAsync()
RSetAsyncreadAllAsync in interface RSetAsync<V>public Object[] toArray()
public <T> T[] toArray(T[] a)
public boolean add(V e)
public RFuture<Boolean> addAsync(V e)
addAsync in interface RCollectionAsync<V>public V removeRandom()
RSetremoveRandom in interface RSet<V>public RFuture<V> removeRandomAsync()
RSetAsyncremoveRandomAsync in interface RSetAsync<V>public Set<V> removeRandom(int amount)
RSetremoveRandom in interface RSet<V>amount - of random valuespublic RFuture<Set<V>> removeRandomAsync(int amount)
RSetAsyncremoveRandomAsync in interface RSetAsync<V>amount - of random valuespublic RFuture<V> randomAsync()
RSetAsyncrandomAsync in interface RSetAsync<V>public RFuture<Boolean> removeAsync(Object o)
RCollectionAsyncremoveAsync in interface RCollectionAsync<V>o - element to be removed from this collection, if presentpublic boolean remove(Object value)
public RFuture<Boolean> moveAsync(String destination, V member)
RSetAsyncpublic boolean move(String destination, V member)
RSetpublic boolean containsAll(Collection<?> c)
containsAll in interface Collection<V>containsAll in interface Set<V>public RFuture<Boolean> containsAllAsync(Collection<?> c)
RCollectionAsynccontainsAllAsync in interface RCollectionAsync<V>c - collection to be checked for containment in this collectionpublic boolean addAll(Collection<? extends V> c)
public RFuture<Boolean> addAllAsync(Collection<? extends V> c)
addAllAsync in interface RCollectionAsync<V>public boolean retainAll(Collection<?> c)
public RFuture<Boolean> retainAllAsync(Collection<?> c)
RCollectionAsyncretainAllAsync in interface RCollectionAsync<V>c - collection containing elements to be retained in this collectionpublic RFuture<Boolean> removeAllAsync(Collection<?> c)
RCollectionAsyncremoveAllAsync in interface RCollectionAsync<V>c - collection containing elements to be removed from this collectionpublic RLock getLock(V value)
RSetvaluepublic boolean removeAll(Collection<?> c)
public int union(String... names)
RSetpublic RFuture<Integer> unionAsync(String... names)
RSetAsyncunionAsync in interface RSetAsync<V>names - - name of setspublic Set<V> readUnion(String... names)
RSetpublic RFuture<Set<V>> readUnionAsync(String... names)
RSetAsyncreadUnionAsync in interface RSetAsync<V>names - - name of setspublic void clear()
public int diff(String... names)
RSetpublic RFuture<Integer> diffAsync(String... names)
RSetAsyncpublic Set<V> readDiff(String... names)
RSetpublic RFuture<Set<V>> readDiffAsync(String... names)
RSetAsyncreadDiffAsync in interface RSetAsync<V>names - - name of setspublic int intersection(String... names)
RSetintersection in interface RSet<V>names - - name of setspublic RFuture<Integer> intersectionAsync(String... names)
RSetAsyncintersectionAsync in interface RSetAsync<V>names - - name of setspublic Set<V> readIntersection(String... names)
RSetreadIntersection in interface RSet<V>names - - name of setspublic RFuture<Set<V>> readIntersectionAsync(String... names)
RSetAsyncreadIntersectionAsync in interface RSetAsync<V>names - - name of setspublic RFuture<Set<V>> readSortAsync(SortOrder order)
RSortableAsyncreadSortAsync in interface RSortableAsync<Set<V>>order - for sorted datapublic Set<V> readSort(SortOrder order)
RSortablepublic RFuture<Set<V>> readSortAsync(SortOrder order, int offset, int count)
RSortableAsyncreadSortAsync in interface RSortableAsync<Set<V>>order - for sorted dataoffset - of sorted datacount - of sorted datapublic Set<V> readSort(SortOrder order, int offset, int count)
RSortablepublic Set<V> readSort(String byPattern, SortOrder order)
RSortablepublic RFuture<Set<V>> readSortAsync(String byPattern, SortOrder order)
RSortableAsyncreadSortAsync 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)
RSortablepublic RFuture<Set<V>> readSortAsync(String byPattern, SortOrder order, int offset, int count)
RSortableAsyncreadSortAsync 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)
RSortablepublic <T> RFuture<Collection<T>> readSortAsync(String byPattern, List<String> getPatterns, SortOrder order)
RSortableAsyncreadSortAsync 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)
RSortablereadSort 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)
RSortableAsyncreadSortAsync 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)
RSortabledestName listpublic RFuture<Integer> sortToAsync(String destName, SortOrder order)
RSortableAsyncdestName listsortToAsync in interface RSortableAsync<Set<V>>destName - list object destinationorder - for sorted datapublic int sortTo(String destName, SortOrder order, int offset, int count)
RSortabledestName listpublic RFuture<Integer> sortToAsync(String destName, SortOrder order, int offset, int count)
RSortableAsyncdestName 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)
RSortabledestName listpublic RFuture<Integer> sortToAsync(String destName, String byPattern, SortOrder order)
RSortableAsyncdestName 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 int sortTo(String destName, String byPattern, SortOrder order, int offset, int count)
RSortabledestName listpublic RFuture<Integer> sortToAsync(String destName, String byPattern, SortOrder order, int offset, int count)
RSortableAsyncdestName 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)
RSortabledestName listpublic RFuture<Integer> sortToAsync(String destName, String byPattern, List<String> getPatterns, SortOrder order)
RSortableAsyncdestName 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)
RSortabledestName 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)
RSortableAsyncdestName 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 boolean expire(long timeToLive,
TimeUnit timeUnit)
RExpirableexpire in interface RExpirabletimeToLive - - timeout before object will be deletedtimeUnit - - timeout time unittrue if the timeout was set and false if notpublic boolean expireAt(long timestamp)
RExpirableexpireAt in interface RExpirabletimestamp - - expire date in milliseconds (Unix timestamp)true if the timeout was set and false if notpublic boolean expireAt(Date timestamp)
RExpirableexpireAt in interface RExpirabletimestamp - - expire datetrue if the timeout was set and false if notpublic RFuture<Boolean> expireAtAsync(Date timestamp)
RExpirableAsyncexpireAtAsync in interface RExpirableAsynctimestamp - - expire datetrue if the timeout was set and false if notpublic boolean clearExpire()
RExpirableclearExpire in interface RExpirabletrue if timeout was removed
false if object does not exist or does not have an associated timeoutpublic long remainTimeToLive()
RExpirableremainTimeToLive in interface RExpirableCopyright © 2014–2018 The Redisson Project. All rights reserved.