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