Package org.redisson.api.queue
Interface DequeMoveDestination
-
- All Superinterfaces:
DequeMoveArgs
public interface DequeMoveDestination extends DequeMoveArgs
Arguments object for deque move method.- Author:
- Nikita Koksharov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DequeMoveArgs
addFirstTo(String name)
Define to add removed element as the head element of destination queue.DequeMoveArgs
addLastTo(String name)
Define to add removed element as the head element of specified queue.
-
-
-
Method Detail
-
addFirstTo
DequeMoveArgs addFirstTo(String name)
Define to add removed element as the head element of destination queue.- Parameters:
name
- - name of destination queue- Returns:
- arguments object
-
addLastTo
DequeMoveArgs addLastTo(String name)
Define to add removed element as the head element of specified queue.- Parameters:
name
- - name of destination queue- Returns:
- arguments object
-
-