java.lang.Object
io.lettuce.core.CopyArgs
- All Implemented Interfaces:
CompositeArgument
public class CopyArgs extends Object implements CompositeArgument
Argument list builder for the Redis COPY command. Static import the methods from
CopyArgs.Builder and call the methods: destinationDb(…) replace(…).
CopyArgs is a mutable object and instances should be used only once to avoid shared mutable state.- Since:
- 6.1
- Author:
- Bartek Kowalczyk
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCopyArgs.BuilderBuilder entry points forCopyArgs. -
Constructor Summary
Constructors Constructor Description CopyArgs() -
Method Summary
Modifier and Type Method Description <K, V> voidbuild(CommandArgs<K,V> args)Build command arguments and contribute arguments toCommandArgs.CopyArgsdestinationDb(long destinationDb)Specify an alternative logical database index for the destination key.CopyArgsreplace(boolean replace)Hint redis to remove the destination key before copying the value to it.
-
Constructor Details
-
CopyArgs
public CopyArgs()
-
-
Method Details
-
destinationDb
Specify an alternative logical database index for the destination key.- Parameters:
destinationDb- logical database index to apply for DB.- Returns:
this.
-
replace
Hint redis to remove the destination key before copying the value to it.- Parameters:
replace- remove destination key before copying the value REPLACE.- Returns:
this.
-
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.
-