Package org.redisson.reactive
Class RedissonMapReactive<K,V>
- java.lang.Object
-
- org.redisson.reactive.RedissonMapReactive<K,V>
-
- Type Parameters:
K
- keyV
- value
- Direct Known Subclasses:
RedissonMapCacheReactive
public class RedissonMapReactive<K,V> extends Object
- Author:
- Nikita Koksharov
-
-
Constructor Summary
Constructors Constructor Description RedissonMapReactive(RMap<K,V> map, CommandReactiveExecutor commandExecutor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.reactivestreams.Publisher<Map.Entry<K,V>>
entryIterator()
org.reactivestreams.Publisher<Map.Entry<K,V>>
entryIterator(int count)
org.reactivestreams.Publisher<Map.Entry<K,V>>
entryIterator(String pattern)
org.reactivestreams.Publisher<Map.Entry<K,V>>
entryIterator(String pattern, int count)
RLockReactive
getFairLock(K key)
RLockReactive
getLock(K key)
RPermitExpirableSemaphoreReactive
getPermitExpirableSemaphore(K key)
RReadWriteLockReactive
getReadWriteLock(K key)
RSemaphoreReactive
getSemaphore(K key)
org.reactivestreams.Publisher<K>
keyIterator()
org.reactivestreams.Publisher<K>
keyIterator(int count)
org.reactivestreams.Publisher<K>
keyIterator(String pattern)
org.reactivestreams.Publisher<K>
keyIterator(String pattern, int count)
org.reactivestreams.Publisher<V>
valueIterator()
org.reactivestreams.Publisher<V>
valueIterator(int count)
org.reactivestreams.Publisher<V>
valueIterator(String pattern)
org.reactivestreams.Publisher<V>
valueIterator(String pattern, int count)
-
-
-
Constructor Detail
-
RedissonMapReactive
public RedissonMapReactive(RMap<K,V> map, CommandReactiveExecutor commandExecutor)
-
-
Method Detail
-
entryIterator
public org.reactivestreams.Publisher<Map.Entry<K,V>> entryIterator(String pattern, int count)
-
valueIterator
public org.reactivestreams.Publisher<V> valueIterator()
-
valueIterator
public org.reactivestreams.Publisher<V> valueIterator(int count)
-
keyIterator
public org.reactivestreams.Publisher<K> keyIterator()
-
keyIterator
public org.reactivestreams.Publisher<K> keyIterator(int count)
-
getPermitExpirableSemaphore
public RPermitExpirableSemaphoreReactive getPermitExpirableSemaphore(K key)
-
getSemaphore
public RSemaphoreReactive getSemaphore(K key)
-
getFairLock
public RLockReactive getFairLock(K key)
-
getReadWriteLock
public RReadWriteLockReactive getReadWriteLock(K key)
-
getLock
public RLockReactive getLock(K key)
-
-