Uses of Enum Class
redis.clients.jedis.args.ListDirection
Packages that use ListDirection
Package
Description
This package contains the classes that represent arguments of Redis core commands.
This package contains the interfaces that contain methods representing Redis core commands.
-
Uses of ListDirection in redis.clients.jedis
Methods in redis.clients.jedis with parameters of type ListDirectionModifier and TypeMethodDescriptionfinal CommandObject<byte[]> CommandObjects.blmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to, double timeout) final CommandObject<String> CommandObjects.blmove(String srcKey, String dstKey, ListDirection from, ListDirection to, double timeout) byte[]Jedis.blmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to, double timeout) Pop an element from a list, push it to another list and return it; or block until one is availableJedis.blmove(String srcKey, String dstKey, ListDirection from, ListDirection to, double timeout) Response<byte[]> MultiNodePipelineBase.blmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to, double timeout) MultiNodePipelineBase.blmove(String srcKey, String dstKey, ListDirection from, ListDirection to, double timeout) Response<byte[]> Pipeline.blmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to, double timeout) Pipeline.blmove(String srcKey, String dstKey, ListDirection from, ListDirection to, double timeout) Response<byte[]> TransactionBase.blmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to, double timeout) TransactionBase.blmove(String srcKey, String dstKey, ListDirection from, ListDirection to, double timeout) byte[]UnifiedJedis.blmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to, double timeout) UnifiedJedis.blmove(String srcKey, String dstKey, ListDirection from, ListDirection to, double timeout) final CommandObject<KeyValue<byte[], List<byte[]>>> CommandObjects.blmpop(long timeout, ListDirection direction, byte[]... keys) final CommandObject<KeyValue<byte[], List<byte[]>>> CommandObjects.blmpop(long timeout, ListDirection direction, int count, byte[]... keys) final CommandObject<KeyValue<String, List<String>>> CommandObjects.blmpop(long timeout, ListDirection direction, int count, String... keys) final CommandObject<KeyValue<String, List<String>>> CommandObjects.blmpop(long timeout, ListDirection direction, String... keys) Jedis.blmpop(long timeout, ListDirection direction, byte[]... keys) Jedis.blmpop(long timeout, ListDirection direction, int count, byte[]... keys) Jedis.blmpop(long timeout, ListDirection direction, int count, String... keys) Jedis.blmpop(long timeout, ListDirection direction, String... keys) MultiNodePipelineBase.blmpop(long timeout, ListDirection direction, byte[]... keys) MultiNodePipelineBase.blmpop(long timeout, ListDirection direction, int count, byte[]... keys) MultiNodePipelineBase.blmpop(long timeout, ListDirection direction, int count, String... keys) MultiNodePipelineBase.blmpop(long timeout, ListDirection direction, String... keys) Pipeline.blmpop(long timeout, ListDirection direction, byte[]... keys) Pipeline.blmpop(long timeout, ListDirection direction, int count, byte[]... keys) Pipeline.blmpop(long timeout, ListDirection direction, int count, String... keys) Pipeline.blmpop(long timeout, ListDirection direction, String... keys) TransactionBase.blmpop(long timeout, ListDirection direction, byte[]... keys) TransactionBase.blmpop(long timeout, ListDirection direction, int count, byte[]... keys) TransactionBase.blmpop(long timeout, ListDirection direction, int count, String... keys) TransactionBase.blmpop(long timeout, ListDirection direction, String... keys) UnifiedJedis.blmpop(long timeout, ListDirection direction, byte[]... keys) UnifiedJedis.blmpop(long timeout, ListDirection direction, int count, byte[]... keys) UnifiedJedis.blmpop(long timeout, ListDirection direction, int count, String... keys) UnifiedJedis.blmpop(long timeout, ListDirection direction, String... keys) final CommandObject<byte[]> CommandObjects.lmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to) final CommandObject<String> CommandObjects.lmove(String srcKey, String dstKey, ListDirection from, ListDirection to) byte[]Jedis.lmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to) Pop an element from a list, push it to another list and return itJedis.lmove(String srcKey, String dstKey, ListDirection from, ListDirection to) Response<byte[]> MultiNodePipelineBase.lmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to) MultiNodePipelineBase.lmove(String srcKey, String dstKey, ListDirection from, ListDirection to) Response<byte[]> Pipeline.lmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to) Pipeline.lmove(String srcKey, String dstKey, ListDirection from, ListDirection to) Response<byte[]> TransactionBase.lmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to) TransactionBase.lmove(String srcKey, String dstKey, ListDirection from, ListDirection to) byte[]UnifiedJedis.lmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to) UnifiedJedis.lmove(String srcKey, String dstKey, ListDirection from, ListDirection to) final CommandObject<KeyValue<byte[], List<byte[]>>> CommandObjects.lmpop(ListDirection direction, byte[]... keys) final CommandObject<KeyValue<byte[], List<byte[]>>> CommandObjects.lmpop(ListDirection direction, int count, byte[]... keys) final CommandObject<KeyValue<String, List<String>>> CommandObjects.lmpop(ListDirection direction, int count, String... keys) final CommandObject<KeyValue<String, List<String>>> CommandObjects.lmpop(ListDirection direction, String... keys) Jedis.lmpop(ListDirection direction, byte[]... keys) Jedis.lmpop(ListDirection direction, int count, byte[]... keys) Jedis.lmpop(ListDirection direction, int count, String... keys) Jedis.lmpop(ListDirection direction, String... keys) MultiNodePipelineBase.lmpop(ListDirection direction, byte[]... keys) MultiNodePipelineBase.lmpop(ListDirection direction, int count, byte[]... keys) MultiNodePipelineBase.lmpop(ListDirection direction, int count, String... keys) MultiNodePipelineBase.lmpop(ListDirection direction, String... keys) Pipeline.lmpop(ListDirection direction, byte[]... keys) Pipeline.lmpop(ListDirection direction, int count, byte[]... keys) Pipeline.lmpop(ListDirection direction, int count, String... keys) Pipeline.lmpop(ListDirection direction, String... keys) TransactionBase.lmpop(ListDirection direction, byte[]... keys) TransactionBase.lmpop(ListDirection direction, int count, byte[]... keys) TransactionBase.lmpop(ListDirection direction, int count, String... keys) TransactionBase.lmpop(ListDirection direction, String... keys) UnifiedJedis.lmpop(ListDirection direction, byte[]... keys) UnifiedJedis.lmpop(ListDirection direction, int count, byte[]... keys) UnifiedJedis.lmpop(ListDirection direction, int count, String... keys) UnifiedJedis.lmpop(ListDirection direction, String... keys) -
Uses of ListDirection in redis.clients.jedis.args
Methods in redis.clients.jedis.args that return ListDirectionModifier and TypeMethodDescriptionstatic ListDirectionReturns the enum constant of this class with the specified name.static ListDirection[]ListDirection.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of ListDirection in redis.clients.jedis.commands
Methods in redis.clients.jedis.commands with parameters of type ListDirectionModifier and TypeMethodDescriptionbyte[]ListBinaryCommands.blmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to, double timeout) ListCommands.blmove(String srcKey, String dstKey, ListDirection from, ListDirection to, double timeout) Pop an element from a list, push it to another list and return it; or block until one is availableResponse<byte[]> ListPipelineBinaryCommands.blmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to, double timeout) ListPipelineCommands.blmove(String srcKey, String dstKey, ListDirection from, ListDirection to, double timeout) ListBinaryCommands.blmpop(long timeout, ListDirection direction, byte[]... keys) ListBinaryCommands.blmpop(long timeout, ListDirection direction, int count, byte[]... keys) ListCommands.blmpop(long timeout, ListDirection direction, int count, String... keys) ListCommands.blmpop(long timeout, ListDirection direction, String... keys) ListPipelineBinaryCommands.blmpop(long timeout, ListDirection direction, byte[]... keys) ListPipelineBinaryCommands.blmpop(long timeout, ListDirection direction, int count, byte[]... keys) ListPipelineCommands.blmpop(long timeout, ListDirection direction, int count, String... keys) ListPipelineCommands.blmpop(long timeout, ListDirection direction, String... keys) byte[]ListBinaryCommands.lmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to) ListCommands.lmove(String srcKey, String dstKey, ListDirection from, ListDirection to) Pop an element from a list, push it to another list and return itResponse<byte[]> ListPipelineBinaryCommands.lmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to) ListPipelineCommands.lmove(String srcKey, String dstKey, ListDirection from, ListDirection to) ListBinaryCommands.lmpop(ListDirection direction, byte[]... keys) ListBinaryCommands.lmpop(ListDirection direction, int count, byte[]... keys) ListCommands.lmpop(ListDirection direction, int count, String... keys) ListCommands.lmpop(ListDirection direction, String... keys) ListPipelineBinaryCommands.lmpop(ListDirection direction, byte[]... keys) ListPipelineBinaryCommands.lmpop(ListDirection direction, int count, byte[]... keys) ListPipelineCommands.lmpop(ListDirection direction, int count, String... keys) ListPipelineCommands.lmpop(ListDirection direction, String... keys)