Package org.redisson.api.queue
Interface QueueMoveArgs
- All Superinterfaces:
SyncArgs<QueueMoveArgs>
- All Known Implementing Classes:
QueueMoveParams
Interface defining parameters for transferring elements between queues.
- Author:
- Nikita Koksharov
-
Method Summary
Static MethodsModifier and TypeMethodDescriptionstatic QueueMoveDestinationcount(int count) Defines number of messages to move from the beginning of the queue to the end of the destination queue.static QueueMoveDestinationDefines messages by ids to move to the destination queue.Methods inherited from interface org.redisson.api.SyncArgs
syncFailureMode, syncMode, syncTimeout
-
Method Details
-
ids
Defines messages by ids to move to the destination queue.- Parameters:
ids- identifiers of queue messages to move- Returns:
- arguments object
-
count
Defines number of messages to move from the beginning of the queue to the end of the destination queue.- Parameters:
count- The number of elements to move from the beginning of the queue- Returns:
- arguments object
-