Package org.redisson.reactive
Class RedissonSetCacheReactive<V>
- java.lang.Object
-
- org.redisson.reactive.RedissonSetCacheReactive<V>
-
- Type Parameters:
V
- value
public class RedissonSetCacheReactive<V> extends Object
- Author:
- Nikita Koksharov
-
-
Constructor Summary
Constructors Constructor Description RedissonSetCacheReactive(RSetCache<V> instance, RedissonReactiveClient redisson)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.reactivestreams.Publisher<Boolean>
addAll(org.reactivestreams.Publisher<? extends V> c)
RLockReactive
getFairLock(V value)
RLockReactive
getLock(V value)
RPermitExpirableSemaphoreReactive
getPermitExpirableSemaphore(V value)
RReadWriteLockReactive
getReadWriteLock(V value)
RSemaphoreReactive
getSemaphore(V value)
org.reactivestreams.Publisher<V>
iterator()
-
-
-
Constructor Detail
-
RedissonSetCacheReactive
public RedissonSetCacheReactive(RSetCache<V> instance, RedissonReactiveClient redisson)
-
-
Method Detail
-
iterator
public org.reactivestreams.Publisher<V> iterator()
-
addAll
public org.reactivestreams.Publisher<Boolean> addAll(org.reactivestreams.Publisher<? extends V> c)
-
getPermitExpirableSemaphore
public RPermitExpirableSemaphoreReactive getPermitExpirableSemaphore(V value)
-
getSemaphore
public RSemaphoreReactive getSemaphore(V value)
-
getFairLock
public RLockReactive getFairLock(V value)
-
getReadWriteLock
public RReadWriteLockReactive getReadWriteLock(V value)
-
getLock
public RLockReactive getLock(V value)
-
-