java.lang.Object
io.lettuce.core.LMoveArgs
- All Implemented Interfaces:
CompositeArgument
public class LMoveArgs extends Object implements CompositeArgument
Argument list builder for the Redis BLMOVE and
LMOVE commands. Static import the methods from
LMoveArgs.Builder and chain the
method calls: leftRight().- Since:
- 6.1
- Author:
- Mikhael Sokolov, Mark Paluch
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classLMoveArgs.BuilderBuilder entry points forLMoveArgs. -
Method Summary
Modifier and Type Method Description <K, V> voidbuild(CommandArgs<K,V> args)Build command arguments and contribute arguments toCommandArgs.
-
Method Details
-
build
Description copied from interface:CompositeArgumentBuild command arguments and contribute arguments toCommandArgs.Implementing classes are required to implement this method. Depending on the command nature and configured arguments, this method may contribute arguments but is not required to add arguments if none are specified.
- Specified by:
buildin interfaceCompositeArgument- Type Parameters:
K- Key type.V- Value type.- Parameters:
args- the command arguments, must not benull.
-