Package org.redisson.rx
Class RedissonMapRx<K,V>
- java.lang.Object
-
- org.redisson.rx.RedissonMapRx<K,V>
-
- Type Parameters:
K- keyV- value
- Direct Known Subclasses:
RedissonMapCacheRx
public class RedissonMapRx<K,V> extends Object
Distributed and concurrent implementation ofConcurrentMapandMap- Author:
- Nikita Koksharov
-
-
Constructor Summary
Constructors Constructor Description RedissonMapRx(RMap<K,V> instance, CommandRxExecutor executor)
-
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)RLockRxgetFairLock(K key)RLockRxgetLock(K key)RPermitExpirableSemaphoreRxgetPermitExpirableSemaphore(K key)RReadWriteLockRxgetReadWriteLock(K key)RSemaphoreRxgetSemaphore(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
-
RedissonMapRx
public RedissonMapRx(RMap<K,V> instance, CommandRxExecutor executor)
-
-
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 RPermitExpirableSemaphoreRx getPermitExpirableSemaphore(K key)
-
getSemaphore
public RSemaphoreRx getSemaphore(K key)
-
getReadWriteLock
public RReadWriteLockRx getReadWriteLock(K key)
-
-