Uses of Interface
org.redisson.api.RDeque
-
Packages that use RDeque Package Description org.redisson org.redisson.api -
-
Uses of RDeque in org.redisson
Classes in org.redisson that implement RDeque Modifier and Type Class Description class
RedissonBlockingDeque<V>
Distributed and concurrent implementation ofBlockingDeque
.class
RedissonDeque<V>
Distributed and concurrent implementation ofQueue
class
RedissonPriorityBlockingDeque<V>
Distributed and concurrent implementation of priority blocking deque.class
RedissonPriorityDeque<V>
Distributed and concurrent implementation ofQueue
Methods in org.redisson that return RDeque Modifier and Type Method Description <V> RDeque<V>
Redisson. getDeque(String name)
<V> RDeque<V>
Redisson. getDeque(String name, Codec codec)
-
Uses of RDeque in org.redisson.api
Subinterfaces of RDeque in org.redisson.api Modifier and Type Interface Description interface
RBlockingDeque<V>
BlockingDeque
backed by Redisinterface
RPriorityBlockingDeque<V>
RPriorityBlockingDeque backed by Redisinterface
RPriorityDeque<V>
Redis based priority deque.Methods in org.redisson.api that return RDeque Modifier and Type Method Description <V> RDeque<V>
RedissonClient. getDeque(String name)
Returns unbounded deque instance by name.<V> RDeque<V>
RedissonClient. getDeque(String name, Codec codec)
Returns unbounded deque instance by name using provided codec for deque objects.
-