Package org.redisson.reactive
Class RedissonSetReactive<V>
- java.lang.Object
-
- org.redisson.reactive.RedissonSetReactive<V>
-
-
Constructor Summary
Constructors Constructor Description RedissonSetReactive(RSet<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()
org.reactivestreams.Publisher<V>
iterator(int count)
org.reactivestreams.Publisher<V>
iterator(String pattern)
org.reactivestreams.Publisher<V>
iterator(String pattern, int count)
-
-
-
Constructor Detail
-
RedissonSetReactive
public RedissonSetReactive(RSet<V> instance, RedissonReactiveClient redisson)
-
-
Method Detail
-
addAll
public org.reactivestreams.Publisher<Boolean> addAll(org.reactivestreams.Publisher<? extends V> c)
-
iterator
public org.reactivestreams.Publisher<V> iterator(int count)
-
iterator
public org.reactivestreams.Publisher<V> iterator()
-
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)
-
-