Package org.redisson.reactive
Class RedissonListReactive<V>
- java.lang.Object
-
- org.redisson.reactive.RedissonListReactive<V>
-
- Type Parameters:
V
- the type of elements held in this collection
- Direct Known Subclasses:
RedissonBlockingQueueReactive
public class RedissonListReactive<V> extends Object
Distributed and concurrent implementation ofList
- Author:
- Nikita Koksharov
-
-
Constructor Summary
Constructors Constructor Description RedissonListReactive(RListAsync<V> instance)
RedissonListReactive(Codec codec, CommandReactiveExecutor commandExecutor, String name)
RedissonListReactive(CommandReactiveExecutor commandExecutor, String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.reactivestreams.Publisher<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
-
RedissonListReactive
public RedissonListReactive(RListAsync<V> instance)
-
RedissonListReactive
public RedissonListReactive(CommandReactiveExecutor commandExecutor, String name)
-
RedissonListReactive
public RedissonListReactive(Codec codec, CommandReactiveExecutor commandExecutor, String name)
-
-
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)
-
-