Package org.redisson.api.queue
Interface DequeMoveArgs
- All Known Subinterfaces:
DequeMoveDestination
public interface DequeMoveArgs
Arguments object for deque move method.
RDeque.move(DequeMoveArgs)
RDequeAsync.moveAsync(DequeMoveArgs)
RDequeRx.move(DequeMoveArgs)
RDequeReactive.move(DequeMoveArgs)
- Author:
- Nikita Koksharov
-
Method Summary
Modifier and TypeMethodDescriptionstatic DequeMoveDestination
Define to remove the head element of this queue.static DequeMoveDestination
pollLast()
Define to remove the tail element of this queue.
-
Method Details
-
pollLast
Define to remove the tail element of this queue.- Returns:
- arguments object
-
pollFirst
Define to remove the head element of this queue.- Returns:
- arguments object
-