Package org.redisson.transaction
Class RedissonTransactionalSet<V>
- java.lang.Object
-
- org.redisson.RedissonObject
-
- org.redisson.RedissonSet<V>
-
- org.redisson.transaction.RedissonTransactionalSet<V>
-
- Type Parameters:
V- value type
- All Implemented Interfaces:
Iterable<V>,Collection<V>,Set<V>,RCollectionAsync<V>,RExpirable,RExpirableAsync,RObject,RObjectAsync,RSet<V>,RSetAsync<V>,RSortable<Set<V>>,RSortableAsync<Set<V>>,ScanIterator
public class RedissonTransactionalSet<V> extends RedissonSet<V>
- Author:
- Nikita Koksharov
-
-
Field Summary
-
Fields inherited from class org.redisson.RedissonObject
codec, commandExecutor, name
-
-
Constructor Summary
Constructors Constructor Description RedissonTransactionalSet(Codec codec, CommandAsyncExecutor commandExecutor, String name, List<TransactionalOperation> operations, long timeout, AtomicBoolean executed, String transactionId)RedissonTransactionalSet(CommandAsyncExecutor commandExecutor, String name, List<TransactionalOperation> operations, long timeout, AtomicBoolean executed, String transactionId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RFuture<Boolean>addAllAsync(Collection<? extends V> c)Adds all elements contained in the specified collectionRFuture<Boolean>addAsync(V e)Adds element into this collection.protected voidcheckState()booleanclearExpire()Clear an expire timeout or expire date for object.RFuture<Boolean>clearExpireAsync()Clear an expire timeout or expire date for object in async mode.protected RFuture<Boolean>clearExpireAsync(String... keys)RFuture<Boolean>containsAsync(Object o)Returnstrueif this collection contains encoded state of the specified element.RFuture<Integer>diffAsync(String... names)Diff sets specified by name and write to current set.booleanexpire(long timeToLive, TimeUnit timeUnit)Set a timeout for object.booleanexpire(Instant instant)Set an expire date for object.RFuture<Boolean>expireAsync(long timeToLive, TimeUnit timeUnit)Set a timeout for object in async mode.protected RFuture<Boolean>expireAsync(long timeToLive, TimeUnit timeUnit, String... keys)RFuture<Boolean>expireAsync(Instant timestamp)Set an expire date for object.booleanexpireAt(long timestamp)UseRExpirable.expire(Instant)insteadbooleanexpireAt(Date timestamp)UseRExpirable.expire(Instant)insteadRFuture<Boolean>expireAtAsync(long timestamp)UseRExpirableAsync.expireAsync(Instant)insteadprotected RFuture<Boolean>expireAtAsync(long timestamp, String... keys)RFuture<Boolean>expireAtAsync(Date timestamp)UseRExpirableAsync.expireAsync(Instant)insteadRCountDownLatchgetCountDownLatch(V value)ReturnsRCountDownLatchinstance associated withvalueRLockgetFairLock(V value)ReturnsRLockinstance associated withvalueRLockgetLock(V value)Returns lock instance associated withvalueRPermitExpirableSemaphoregetPermitExpirableSemaphore(V value)ReturnsRPermitExpirableSemaphoreinstance associated withvalueRReadWriteLockgetReadWriteLock(V value)ReturnsRReadWriteLockinstance associated withvalueRSemaphoregetSemaphore(V value)ReturnsRSemaphoreinstance associated withvalueRFuture<Integer>intersectionAsync(String... names)Intersection sets specified by name and write to current set.<KOut,VOut>
RCollectionMapReduce<V,KOut,VOut>mapReduce()ReturnsRMapReduceobject associated with this objectRFuture<Void>migrateAsync(String host, int port, int database, long timeout)Transfer object from source Redis instance to destination Redis instance in async modeRFuture<Boolean>moveAsync(int database)Move object to another database in async modeRFuture<Boolean>moveAsync(String destination, V member)Move a member from this set to the given destination set in async mode.RFuture<Set<V>>readAllAsync()Read all elements at onceRFuture<Set<V>>readDiffAsync(String... names)Diff sets specified by name with current set.RFuture<Set<V>>readIntersectionAsync(String... names)Intersection sets specified by name with current set.<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 lexicographicallyRFuture<Set<V>>readSortAlphaAsync(String byPattern, SortOrder order)Read data in sorted view lexicographicallyRFuture<Set<V>>readSortAlphaAsync(String byPattern, SortOrder order, int offset, int count)Read data in sorted view lexicographicallyRFuture<Set<V>>readSortAlphaAsync(SortOrder order)Read data in sorted view lexicographicallyRFuture<Set<V>>readSortAlphaAsync(SortOrder order, int offset, int count)Read data in sorted view lexicographically<T> RFuture<Collection<T>>readSortAsync(String byPattern, List<String> getPatterns, SortOrder order, int offset, int count)Read data in sorted viewRFuture<Set<V>>readSortAsync(String byPattern, SortOrder order)Read data in sorted viewRFuture<Set<V>>readSortAsync(SortOrder order)Read data in sorted viewRFuture<Set<V>>readSortAsync(SortOrder order, int offset, int count)Read data in sorted viewRFuture<Set<V>>readUnionAsync(String... names)Union sets specified by name with current set.longremainTimeToLive()Remaining time to live of Redisson object that has a timeoutRFuture<Long>remainTimeToLiveAsync()Remaining time to live of Redisson object that has a timeoutRFuture<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.RFuture<V>removeRandomAsync()Removes and returns random element from set in async modeRFuture<Set<V>>removeRandomAsync(int amount)Removes and returns random elements from set in async modeRFuture<Boolean>retainAllAsync(Collection<?> c)Retains only the elements in this collection that are contained in the specified collection.ScanResult<Object>scanIterator(String name, RedisClient client, long startPos, String pattern, int count)RFuture<Integer>sortToAsync(String destName, String byPattern, List<String> getPatterns, SortOrder order, int offset, int count)Sort data and store todestNamelistRFuture<Integer>unionAsync(String... names)Union sets specified by name and write to current set.-
Methods inherited from class org.redisson.RedissonSet
add, addAll, clear, contains, containsAll, containsAllAsync, diff, intersection, isEmpty, iterator, iterator, iterator, iterator, move, random, random, randomAsync, randomAsync, readAll, readDiff, readIntersection, readSort, readSort, readSort, readSort, readSort, readSort, readSortAlpha, readSortAlpha, readSortAlpha, readSortAlpha, readSortAlpha, readSortAlpha, readSortAsync, readSortAsync, readUnion, remove, removeAll, removeRandom, removeRandom, retainAll, scanIteratorAsync, size, sizeAsync, sortTo, sortTo, sortTo, sortTo, sortTo, sortTo, sortToAsync, sortToAsync, sortToAsync, sortToAsync, sortToAsync, stream, stream, stream, toArray, toArray, toString, tryAdd, tryAddAsync, union
-
Methods inherited from class org.redisson.RedissonObject
addListener, addListener, addListenerAsync, addListenerAsync, copy, copyAsync, delete, deleteAsync, deleteAsync, dump, dumpAsync, encode, encode, encode, encode, encodeMapKey, encodeMapKeys, encodeMapValue, encodeMapValues, get, getCodec, getIdleTime, getIdleTimeAsync, getLockByMapKey, getLockByValue, getName, getRawName, getRawName, isExists, isExistsAsync, migrate, move, prefixName, removeListener, removeListenerAsync, removeListenersAsync, rename, renameAsync, renamenx, renamenxAsync, restore, restore, restoreAndReplace, restoreAndReplace, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, setName, sizeInMemory, sizeInMemoryAsync, sizeInMemoryAsync, sizeInMemoryAsync, suffixName, toSeconds, toStream, touch, touchAsync, unlink, unlinkAsync
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface org.redisson.api.RExpirable
clearExpire, expire, expire, expireAt, expireAt, remainTimeToLive
-
Methods inherited from interface org.redisson.api.RExpirableAsync
remainTimeToLiveAsync
-
Methods inherited from interface org.redisson.api.RObject
addListener, copy, delete, dump, getCodec, getIdleTime, getName, isExists, migrate, move, removeListener, rename, renamenx, restore, restore, restoreAndReplace, restoreAndReplace, sizeInMemory, touch, unlink
-
Methods inherited from interface org.redisson.api.RObjectAsync
addListenerAsync, copyAsync, deleteAsync, dumpAsync, getIdleTimeAsync, isExistsAsync, removeListenerAsync, renameAsync, renamenxAsync, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, sizeInMemoryAsync, touchAsync, unlinkAsync
-
Methods inherited from interface java.util.Set
equals, hashCode, spliterator
-
-
-
-
Constructor Detail
-
RedissonTransactionalSet
public RedissonTransactionalSet(CommandAsyncExecutor commandExecutor, String name, List<TransactionalOperation> operations, long timeout, AtomicBoolean executed, String transactionId)
-
RedissonTransactionalSet
public RedissonTransactionalSet(Codec codec, CommandAsyncExecutor commandExecutor, String name, List<TransactionalOperation> operations, long timeout, AtomicBoolean executed, String transactionId)
-
-
Method Detail
-
expireAsync
public RFuture<Boolean> expireAsync(long timeToLive, TimeUnit timeUnit)
Description copied from interface:RExpirableAsyncSet a timeout for object in async mode. After the timeout has expired, the key will automatically be deleted.- Specified by:
expireAsyncin interfaceRExpirableAsync- Parameters:
timeToLive- - timeout before object will be deletedtimeUnit- - timeout time unit- Returns:
trueif the timeout was set andfalseif not
-
expireAtAsync
public RFuture<Boolean> expireAtAsync(Date timestamp)
Description copied from interface:RExpirableAsyncUseRExpirableAsync.expireAsync(Instant)instead- Specified by:
expireAtAsyncin interfaceRExpirableAsync- Parameters:
timestamp- - expire date- Returns:
trueif the timeout was set andfalseif not
-
expireAtAsync
public RFuture<Boolean> expireAtAsync(long timestamp)
Description copied from interface:RExpirableAsyncUseRExpirableAsync.expireAsync(Instant)instead- Specified by:
expireAtAsyncin interfaceRExpirableAsync- Parameters:
timestamp- - expire date in milliseconds (Unix timestamp)- Returns:
trueif the timeout was set andfalseif not
-
expireAsync
public RFuture<Boolean> expireAsync(Instant timestamp)
Description copied from interface:RExpirableAsyncSet an expire date for object. When expire date comes the key will automatically be deleted.- Specified by:
expireAsyncin interfaceRExpirableAsync- Parameters:
timestamp- - expire date- Returns:
trueif the timeout was set andfalseif not
-
clearExpireAsync
public RFuture<Boolean> clearExpireAsync()
Description copied from interface:RExpirableAsyncClear an expire timeout or expire date for object in async mode. Object will not be deleted.- Specified by:
clearExpireAsyncin interfaceRExpirableAsync- Returns:
trueif the timeout was cleared andfalseif not
-
moveAsync
public RFuture<Boolean> moveAsync(int database)
Description copied from interface:RObjectAsyncMove object to another database in async mode- Specified by:
moveAsyncin interfaceRObjectAsync- Overrides:
moveAsyncin classRedissonObject- Parameters:
database- - number of Redis database- Returns:
trueif key was movedfalseif not
-
migrateAsync
public RFuture<Void> migrateAsync(String host, int port, int database, long timeout)
Description copied from interface:RObjectAsyncTransfer object from source Redis instance to destination Redis instance in async mode- Specified by:
migrateAsyncin interfaceRObjectAsync- Overrides:
migrateAsyncin classRedissonObject- Parameters:
host- - destination hostport- - destination portdatabase- - destination databasetimeout- - maximum idle time in any moment of the communication with the destination instance in milliseconds- Returns:
- void
-
mapReduce
public <KOut,VOut> RCollectionMapReduce<V,KOut,VOut> mapReduce()
Description copied from interface:RSetReturnsRMapReduceobject associated with this object
-
scanIterator
public ScanResult<Object> scanIterator(String name, RedisClient client, long startPos, String pattern, int count)
- Specified by:
scanIteratorin interfaceScanIterator- Overrides:
scanIteratorin classRedissonSet<V>
-
getFairLock
public RLock getFairLock(V value)
Description copied from interface:RSetReturnsRLockinstance associated withvalue- Specified by:
getFairLockin interfaceRSet<V>- Overrides:
getFairLockin classRedissonSet<V>- Parameters:
value- - set value- Returns:
- RLock object
-
getCountDownLatch
public RCountDownLatch getCountDownLatch(V value)
Description copied from interface:RSetReturnsRCountDownLatchinstance associated withvalue- Specified by:
getCountDownLatchin interfaceRSet<V>- Overrides:
getCountDownLatchin classRedissonSet<V>- Parameters:
value- - set value- Returns:
- RCountDownLatch object
-
getPermitExpirableSemaphore
public RPermitExpirableSemaphore getPermitExpirableSemaphore(V value)
Description copied from interface:RSetReturnsRPermitExpirableSemaphoreinstance associated withvalue- Specified by:
getPermitExpirableSemaphorein interfaceRSet<V>- Overrides:
getPermitExpirableSemaphorein classRedissonSet<V>- Parameters:
value- - set value- Returns:
- RPermitExpirableSemaphore object
-
getSemaphore
public RSemaphore getSemaphore(V value)
Description copied from interface:RSetReturnsRSemaphoreinstance associated withvalue- Specified by:
getSemaphorein interfaceRSet<V>- Overrides:
getSemaphorein classRedissonSet<V>- Parameters:
value- - set value- Returns:
- RSemaphore object
-
getLock
public RLock getLock(V value)
Description copied from interface:RSetReturns lock instance associated withvalue
-
getReadWriteLock
public RReadWriteLock getReadWriteLock(V value)
Description copied from interface:RSetReturnsRReadWriteLockinstance associated withvalue- Specified by:
getReadWriteLockin interfaceRSet<V>- Overrides:
getReadWriteLockin classRedissonSet<V>- Parameters:
value- - set value- Returns:
- RReadWriteLock object
-
containsAsync
public RFuture<Boolean> containsAsync(Object o)
Description copied from interface:RCollectionAsyncReturnstrueif this collection contains encoded state of the specified element.- Specified by:
containsAsyncin interfaceRCollectionAsync<V>- Overrides:
containsAsyncin classRedissonSet<V>- Parameters:
o- element whose presence in this collection is to be tested- Returns:
trueif this collection contains the specified element andfalseotherwise
-
readAllAsync
public RFuture<Set<V>> readAllAsync()
Description copied from interface:RSetAsyncRead all elements at once- Specified by:
readAllAsyncin interfaceRSetAsync<V>- Overrides:
readAllAsyncin classRedissonSet<V>- Returns:
- values
-
addAsync
public RFuture<Boolean> addAsync(V e)
Description copied from interface:RCollectionAsyncAdds element into this collection.- Specified by:
addAsyncin interfaceRCollectionAsync<V>- Overrides:
addAsyncin classRedissonSet<V>- Parameters:
e- - element to add- Returns:
trueif an element was added andfalseif it is already present
-
removeRandomAsync
public RFuture<V> removeRandomAsync()
Description copied from interface:RSetAsyncRemoves and returns random element from set in async mode- Specified by:
removeRandomAsyncin interfaceRSetAsync<V>- Overrides:
removeRandomAsyncin classRedissonSet<V>- Returns:
- value
-
removeRandomAsync
public RFuture<Set<V>> removeRandomAsync(int amount)
Description copied from interface:RSetAsyncRemoves and returns random elements from set in async mode- Specified by:
removeRandomAsyncin interfaceRSetAsync<V>- Overrides:
removeRandomAsyncin classRedissonSet<V>- Parameters:
amount- of random values- Returns:
- random values
-
removeAsync
public RFuture<Boolean> removeAsync(Object o)
Description copied from interface:RCollectionAsyncRemoves a single instance of the specified element from this collection, if it is present.- Specified by:
removeAsyncin interfaceRCollectionAsync<V>- Overrides:
removeAsyncin classRedissonSet<V>- Parameters:
o- element to be removed from this collection, if present- Returns:
trueif an element was removed as a result of this call
-
moveAsync
public RFuture<Boolean> moveAsync(String destination, V member)
Description copied from interface:RSetAsyncMove a member from this set to the given destination set in async mode.
-
addAllAsync
public RFuture<Boolean> addAllAsync(Collection<? extends V> c)
Description copied from interface:RCollectionAsyncAdds all elements contained in the specified collection- Specified by:
addAllAsyncin interfaceRCollectionAsync<V>- Overrides:
addAllAsyncin classRedissonSet<V>- Parameters:
c- - collection of elements to add- Returns:
trueif at least one element was added andfalseif all elements are already present
-
retainAllAsync
public RFuture<Boolean> retainAllAsync(Collection<?> c)
Description copied from interface:RCollectionAsyncRetains only the elements in this collection that are contained in the specified collection.- Specified by:
retainAllAsyncin interfaceRCollectionAsync<V>- Overrides:
retainAllAsyncin classRedissonSet<V>- Parameters:
c- collection containing elements to be retained in this collection- Returns:
trueif this collection changed as a result of the call
-
removeAllAsync
public RFuture<Boolean> removeAllAsync(Collection<?> c)
Description copied from interface:RCollectionAsyncRemoves all of this collection's elements that are also contained in the specified collection.- Specified by:
removeAllAsyncin interfaceRCollectionAsync<V>- Overrides:
removeAllAsyncin classRedissonSet<V>- Parameters:
c- collection containing elements to be removed from this collection- Returns:
trueif this collection changed as a result of the call
-
unionAsync
public RFuture<Integer> unionAsync(String... names)
Description copied from interface:RSetAsyncUnion sets specified by name and write to current set. If current set already exists, it is overwritten.- Specified by:
unionAsyncin interfaceRSetAsync<V>- Overrides:
unionAsyncin classRedissonSet<V>- Parameters:
names- - name of sets- Returns:
- size of union
-
diffAsync
public RFuture<Integer> diffAsync(String... names)
Description copied from interface:RSetAsyncDiff sets specified by name and write to current set. If current set already exists, it is overwritten.
-
intersectionAsync
public RFuture<Integer> intersectionAsync(String... names)
Description copied from interface:RSetAsyncIntersection sets specified by name and write to current set. If current set already exists, it is overwritten.- Specified by:
intersectionAsyncin interfaceRSetAsync<V>- Overrides:
intersectionAsyncin classRedissonSet<V>- Parameters:
names- - name of sets- Returns:
- size of intersection
-
readSortAsync
public RFuture<Set<V>> readSortAsync(SortOrder order)
Description copied from interface:RSortableAsyncRead data in sorted view- Specified by:
readSortAsyncin interfaceRSortableAsync<V>- Overrides:
readSortAsyncin classRedissonSet<V>- Parameters:
order- for sorted data- Returns:
- sorted collection
-
readSortAsync
public RFuture<Set<V>> readSortAsync(SortOrder order, int offset, int count)
Description copied from interface:RSortableAsyncRead data in sorted view- Specified by:
readSortAsyncin interfaceRSortableAsync<V>- Overrides:
readSortAsyncin classRedissonSet<V>- Parameters:
order- for sorted dataoffset- of sorted datacount- of sorted data- Returns:
- sorted collection
-
readSortAsync
public RFuture<Set<V>> readSortAsync(String byPattern, SortOrder order)
Description copied from interface:RSortableAsyncRead data in sorted view- Specified by:
readSortAsyncin interfaceRSortableAsync<V>- Overrides:
readSortAsyncin classRedissonSet<V>- Parameters:
byPattern- that is used to generate the keys that are used for sortingorder- for sorted data- Returns:
- sorted collection
-
readSortAsync
public <T> RFuture<Collection<T>> readSortAsync(String byPattern, List<String> getPatterns, SortOrder order, int offset, int count)
Description copied from interface:RSortableAsyncRead data in sorted view- Specified by:
readSortAsyncin interfaceRSortableAsync<V>- Overrides:
readSortAsyncin classRedissonSet<V>- Type Parameters:
T- object type- Parameters:
byPattern- 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 data- Returns:
- sorted collection
-
readSortAlphaAsync
public RFuture<Set<V>> readSortAlphaAsync(SortOrder order)
Description copied from interface:RSortableAsyncRead data in sorted view lexicographically- Specified by:
readSortAlphaAsyncin interfaceRSortableAsync<V>- Overrides:
readSortAlphaAsyncin classRedissonSet<V>- Parameters:
order- for sorted data- Returns:
- sorted collection lexicographically
-
readSortAlphaAsync
public RFuture<Set<V>> readSortAlphaAsync(SortOrder order, int offset, int count)
Description copied from interface:RSortableAsyncRead data in sorted view lexicographically- Specified by:
readSortAlphaAsyncin interfaceRSortableAsync<V>- Overrides:
readSortAlphaAsyncin classRedissonSet<V>- Parameters:
order- for sorted dataoffset- of sorted datacount- of sorted data- Returns:
- sorted collection lexicographically
-
readSortAlphaAsync
public RFuture<Set<V>> readSortAlphaAsync(String byPattern, SortOrder order)
Description copied from interface:RSortableAsyncRead data in sorted view lexicographically- Specified by:
readSortAlphaAsyncin interfaceRSortableAsync<V>- Overrides:
readSortAlphaAsyncin classRedissonSet<V>- Parameters:
byPattern- that is used to generate the keys that are used for sortingorder- for sorted data- Returns:
- sorted collection lexicographically
-
readSortAlphaAsync
public RFuture<Set<V>> readSortAlphaAsync(String byPattern, SortOrder order, int offset, int count)
Description copied from interface:RSortableAsyncRead data in sorted view lexicographically- Specified by:
readSortAlphaAsyncin interfaceRSortableAsync<V>- Overrides:
readSortAlphaAsyncin classRedissonSet<V>- Parameters:
byPattern- that is used to generate the keys that are used for sortingorder- for sorted dataoffset- of sorted datacount- of sorted data- Returns:
- sorted collection lexicographically
-
readSortAlphaAsync
public <T> RFuture<Collection<T>> readSortAlphaAsync(String byPattern, List<String> getPatterns, SortOrder order)
Description copied from interface:RSortableAsyncRead data in sorted view lexicographically- Specified by:
readSortAlphaAsyncin interfaceRSortableAsync<V>- Overrides:
readSortAlphaAsyncin classRedissonSet<V>- Type Parameters:
T- object type- Parameters:
byPattern- 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 data- Returns:
- sorted collection lexicographically
-
readSortAlphaAsync
public <T> RFuture<Collection<T>> readSortAlphaAsync(String byPattern, List<String> getPatterns, SortOrder order, int offset, int count)
Description copied from interface:RSortableAsyncRead data in sorted view lexicographically- Specified by:
readSortAlphaAsyncin interfaceRSortableAsync<V>- Overrides:
readSortAlphaAsyncin classRedissonSet<V>- Type Parameters:
T- object type- Parameters:
byPattern- 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 data- Returns:
- sorted collection lexicographically
-
sortToAsync
public RFuture<Integer> sortToAsync(String destName, String byPattern, List<String> getPatterns, SortOrder order, int offset, int count)
Description copied from interface:RSortableAsyncSort data and store todestNamelist- Specified by:
sortToAsyncin interfaceRSortableAsync<V>- Overrides:
sortToAsyncin classRedissonSet<V>- Parameters:
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 data- Returns:
- length of sorted data
-
readUnionAsync
public RFuture<Set<V>> readUnionAsync(String... names)
Description copied from interface:RSetAsyncUnion sets specified by name with current set. Without current set state change.- Specified by:
readUnionAsyncin interfaceRSetAsync<V>- Overrides:
readUnionAsyncin classRedissonSet<V>- Parameters:
names- - name of sets- Returns:
- values
-
readDiffAsync
public RFuture<Set<V>> readDiffAsync(String... names)
Description copied from interface:RSetAsyncDiff sets specified by name with current set. Without current set state change.- Specified by:
readDiffAsyncin interfaceRSetAsync<V>- Overrides:
readDiffAsyncin classRedissonSet<V>- Parameters:
names- - name of sets- Returns:
- values
-
readIntersectionAsync
public RFuture<Set<V>> readIntersectionAsync(String... names)
Description copied from interface:RSetAsyncIntersection sets specified by name with current set. Without current set state change.- Specified by:
readIntersectionAsyncin interfaceRSetAsync<V>- Overrides:
readIntersectionAsyncin classRedissonSet<V>- Parameters:
names- - name of sets- Returns:
- values
-
checkState
protected void checkState()
-
expire
public boolean expire(long timeToLive, TimeUnit timeUnit)Description copied from interface:RExpirableSet a timeout for object. After the timeout has expired, the key will automatically be deleted.- Specified by:
expirein interfaceRExpirable- Parameters:
timeToLive- - timeout before object will be deletedtimeUnit- - timeout time unit- Returns:
trueif the timeout was set andfalseif not
-
expireAt
public boolean expireAt(long timestamp)
Description copied from interface:RExpirableUseRExpirable.expire(Instant)instead- Specified by:
expireAtin interfaceRExpirable- Parameters:
timestamp- - expire date in milliseconds (Unix timestamp)- Returns:
trueif the timeout was set andfalseif not
-
expire
public boolean expire(Instant instant)
Description copied from interface:RExpirableSet an expire date for object. When expire date comes the key will automatically be deleted.- Specified by:
expirein interfaceRExpirable- Parameters:
instant- - expire date- Returns:
trueif the timeout was set andfalseif not
-
expireAt
public boolean expireAt(Date timestamp)
Description copied from interface:RExpirableUseRExpirable.expire(Instant)instead- Specified by:
expireAtin interfaceRExpirable- Parameters:
timestamp- - expire date- Returns:
trueif the timeout was set andfalseif not
-
clearExpire
public boolean clearExpire()
Description copied from interface:RExpirableClear an expire timeout or expire date for object.- Specified by:
clearExpirein interfaceRExpirable- Returns:
trueif timeout was removedfalseif object does not exist or does not have an associated timeout
-
remainTimeToLive
public long remainTimeToLive()
Description copied from interface:RExpirableRemaining time to live of Redisson object that has a timeout- Specified by:
remainTimeToLivein interfaceRExpirable- Returns:
- time in milliseconds -2 if the key does not exist. -1 if the key exists but has no associated expire.
-
remainTimeToLiveAsync
public RFuture<Long> remainTimeToLiveAsync()
Description copied from interface:RExpirableAsyncRemaining time to live of Redisson object that has a timeout- Specified by:
remainTimeToLiveAsyncin interfaceRExpirableAsync- Returns:
- time in milliseconds -2 if the key does not exist. -1 if the key exists but has no associated expire.
-
expireAsync
protected RFuture<Boolean> expireAsync(long timeToLive, TimeUnit timeUnit, String... keys)
-
-