V
- valuepublic class RedissonSet<V> extends RedissonObject implements RSet<V>, ScanIterator
Set
codec, commandExecutor
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) |
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.
|
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(String pattern)
Returns values iterator matches
pattern . |
<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
|
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).
|
ListScanResult<ScanObjectEntry> |
scanIterator(String name,
RedisClient client,
long startPos,
String pattern) |
RFuture<ListScanResult<ScanObjectEntry>> |
scanIteratorAsync(String name,
RedisClient client,
long startPos,
String pattern) |
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) |
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.
|
await, copy, copyAsync, delete, deleteAsync, encode, encode, encode, encodeMapKey, encodeMapKeys, encodeMapValue, encodeMapValues, get, getCodec, getName, getName, isExists, isExistsAsync, migrate, migrateAsync, move, moveAsync, prefixName, rename, renameAsync, renamenx, renamenxAsync, suffixName, 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
copy, delete, getCodec, getName, isExists, migrate, move, rename, renamenx, touch, unlink
clearExpireAsync, expireAsync, expireAtAsync, expireAtAsync, remainTimeToLiveAsync
copyAsync, deleteAsync, isExistsAsync, migrateAsync, moveAsync, renameAsync, renamenxAsync, 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
containsAsync
in interface RCollectionAsync<V>
o
- element whose presence in this collection is to be testedpublic ListScanResult<ScanObjectEntry> scanIterator(String name, RedisClient client, long startPos, String pattern)
scanIterator
in interface ScanIterator
public Iterator<V> iterator(String pattern)
RSet
pattern
.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)
addAsync
in interface RCollectionAsync<V>
public 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
removeRandom
in interface RSet<V>
amount
- of random valuespublic 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 RFuture<Boolean> removeAsync(Object o)
RCollectionAsync
removeAsync
in interface RCollectionAsync<V>
o
- element to be removed from this collection, if presentpublic 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
containsAllAsync
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)
RCollectionAsync
retainAllAsync
in interface RCollectionAsync<V>
c
- collection containing elements to be retained in this collectionpublic 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 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 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 RLock getLock(V value)
RSet
value
public RFuture<ListScanResult<ScanObjectEntry>> scanIteratorAsync(String name, RedisClient client, long startPos, String pattern)
scanIteratorAsync
in interface ScanIterator
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
Copyright © 2014–2018 The Redisson Project. All rights reserved.