Package org.redisson.rx
Class RedissonListRx<V>
- java.lang.Object
-
- org.redisson.rx.RedissonListRx<V>
-
- Type Parameters:
V- the type of elements held in this collection
- Direct Known Subclasses:
RedissonBlockingQueueRx
public class RedissonListRx<V> extends Object
Distributed and concurrent implementation ofList- Author:
- Nikita Koksharov
-
-
Constructor Summary
Constructors Constructor Description RedissonListRx(RListAsync<V> instance)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description io.reactivex.rxjava3.core.Single<Boolean>addAll(org.reactivestreams.Publisher<? extends V> c)org.reactivestreams.Publisher<V>descendingIterator()org.reactivestreams.Publisher<V>descendingIterator(int startIndex)org.reactivestreams.Publisher<V>iterator()org.reactivestreams.Publisher<V>iterator(int startIndex)
-
-
-
Constructor Detail
-
RedissonListRx
public RedissonListRx(RListAsync<V> instance)
-
-
Method Detail
-
descendingIterator
public org.reactivestreams.Publisher<V> descendingIterator()
-
iterator
public org.reactivestreams.Publisher<V> iterator()
-
descendingIterator
public org.reactivestreams.Publisher<V> descendingIterator(int startIndex)
-
iterator
public org.reactivestreams.Publisher<V> iterator(int startIndex)
-
-