Uses of Class
io.lettuce.core.LMoveArgs

Packages that use LMoveArgs
Package Description
io.lettuce.core
The Redis client package containing RedisClient for Redis Standalone and Redis Sentinel operations.
io.lettuce.core.api.async
Standalone Redis API for asynchronous executed commands.
io.lettuce.core.api.reactive
Standalone Redis API for reactive command execution.
io.lettuce.core.api.sync
Standalone Redis API for synchronous executed commands.
io.lettuce.core.cluster.api.async
Redis Cluster API for asynchronous executed commands.
io.lettuce.core.cluster.api.sync
Redis Cluster API for synchronous executed commands.
  • Uses of LMoveArgs in io.lettuce.core

    Methods in io.lettuce.core that return LMoveArgs
    Modifier and Type Method Description
    static LMoveArgs LMoveArgs.Builder.leftLeft()
    Creates new LMoveArgs setting with LEFT LEFT directions.
    static LMoveArgs LMoveArgs.Builder.leftRight()
    Creates new LMoveArgs setting with LEFT RIGHT directions.
    static LMoveArgs LMoveArgs.Builder.rightLeft()
    Creates new LMoveArgs setting with RIGHT LEFT directions.
    static LMoveArgs LMoveArgs.Builder.rightRight()
    Creates new LMoveArgs setting with RIGHT RIGHT directions.
    Methods in io.lettuce.core with parameters of type LMoveArgs
    Modifier and Type Method Description
    RedisFuture<V> AbstractRedisAsyncCommands.blmove​(K source, K destination, LMoveArgs args, double timeout)  
    RedisFuture<V> AbstractRedisAsyncCommands.blmove​(K source, K destination, LMoveArgs args, long timeout)  
    Mono<V> AbstractRedisReactiveCommands.blmove​(K source, K destination, LMoveArgs args, double timeout)  
    Mono<V> AbstractRedisReactiveCommands.blmove​(K source, K destination, LMoveArgs args, long timeout)  
    RedisFuture<V> AbstractRedisAsyncCommands.lmove​(K source, K destination, LMoveArgs args)  
    Mono<V> AbstractRedisReactiveCommands.lmove​(K source, K destination, LMoveArgs args)  
  • Uses of LMoveArgs in io.lettuce.core.api.async

    Methods in io.lettuce.core.api.async with parameters of type LMoveArgs
    Modifier and Type Method Description
    RedisFuture<V> RedisListAsyncCommands.blmove​(K source, K destination, LMoveArgs args, double timeout)
    Atomically returns and removes the first/last element (head/tail depending on the wherefrom argument) of the list stored at source, and pushes the element at the first/last element (head/tail depending on the whereto argument) of the list stored at destination.
    RedisFuture<V> RedisListAsyncCommands.blmove​(K source, K destination, LMoveArgs args, long timeout)
    Atomically returns and removes the first/last element (head/tail depending on the wherefrom argument) of the list stored at source, and pushes the element at the first/last element (head/tail depending on the whereto argument) of the list stored at destination.
    RedisFuture<V> RedisListAsyncCommands.lmove​(K source, K destination, LMoveArgs args)
    Atomically returns and removes the first/last element (head/tail depending on the wherefrom argument) of the list stored at source, and pushes the element at the first/last element (head/tail depending on the whereto argument) of the list stored at destination.
  • Uses of LMoveArgs in io.lettuce.core.api.reactive

    Methods in io.lettuce.core.api.reactive with parameters of type LMoveArgs
    Modifier and Type Method Description
    Mono<V> RedisListReactiveCommands.blmove​(K source, K destination, LMoveArgs args, double timeout)
    Atomically returns and removes the first/last element (head/tail depending on the wherefrom argument) of the list stored at source, and pushes the element at the first/last element (head/tail depending on the whereto argument) of the list stored at destination.
    Mono<V> RedisListReactiveCommands.blmove​(K source, K destination, LMoveArgs args, long timeout)
    Atomically returns and removes the first/last element (head/tail depending on the wherefrom argument) of the list stored at source, and pushes the element at the first/last element (head/tail depending on the whereto argument) of the list stored at destination.
    Mono<V> RedisListReactiveCommands.lmove​(K source, K destination, LMoveArgs args)
    Atomically returns and removes the first/last element (head/tail depending on the wherefrom argument) of the list stored at source, and pushes the element at the first/last element (head/tail depending on the whereto argument) of the list stored at destination.
  • Uses of LMoveArgs in io.lettuce.core.api.sync

    Methods in io.lettuce.core.api.sync with parameters of type LMoveArgs
    Modifier and Type Method Description
    V RedisListCommands.blmove​(K source, K destination, LMoveArgs args, double timeout)
    Atomically returns and removes the first/last element (head/tail depending on the wherefrom argument) of the list stored at source, and pushes the element at the first/last element (head/tail depending on the whereto argument) of the list stored at destination.
    V RedisListCommands.blmove​(K source, K destination, LMoveArgs args, long timeout)
    Atomically returns and removes the first/last element (head/tail depending on the wherefrom argument) of the list stored at source, and pushes the element at the first/last element (head/tail depending on the whereto argument) of the list stored at destination.
    V RedisListCommands.lmove​(K source, K destination, LMoveArgs args)
    Atomically returns and removes the first/last element (head/tail depending on the wherefrom argument) of the list stored at source, and pushes the element at the first/last element (head/tail depending on the whereto argument) of the list stored at destination.
  • Uses of LMoveArgs in io.lettuce.core.cluster.api.async

    Methods in io.lettuce.core.cluster.api.async with parameters of type LMoveArgs
    Modifier and Type Method Description
    AsyncExecutions<V> NodeSelectionListAsyncCommands.blmove​(K source, K destination, LMoveArgs args, double timeout)
    Atomically returns and removes the first/last element (head/tail depending on the where from argument) of the list stored at source, and pushes the element at the first/last element (head/tail depending on the whereto argument) of the list stored at destination.
    AsyncExecutions<V> NodeSelectionListAsyncCommands.blmove​(K source, K destination, LMoveArgs args, long timeout)
    Atomically returns and removes the first/last element (head/tail depending on the where from argument) of the list stored at source, and pushes the element at the first/last element (head/tail depending on the whereto argument) of the list stored at destination.
    AsyncExecutions<V> NodeSelectionListAsyncCommands.lmove​(K source, K destination, LMoveArgs args)
    Atomically returns and removes the first/last element (head/tail depending on the where from argument) of the list stored at source, and pushes the element at the first/last element (head/tail depending on the whereto argument) of the list stored at destination.
  • Uses of LMoveArgs in io.lettuce.core.cluster.api.sync

    Methods in io.lettuce.core.cluster.api.sync with parameters of type LMoveArgs
    Modifier and Type Method Description
    Executions<V> NodeSelectionListCommands.blmove​(K source, K destination, LMoveArgs args, double timeout)
    Atomically returns and removes the first/last element (head/tail depending on the wherefrom argument) of the list stored at source, and pushes the element at the first/last element (head/tail depending on the whereto argument) of the list stored at destination.
    Executions<V> NodeSelectionListCommands.blmove​(K source, K destination, LMoveArgs args, long timeout)
    Atomically returns and removes the first/last element (head/tail depending on the wherefrom argument) of the list stored at source, and pushes the element at the first/last element (head/tail depending on the whereto argument) of the list stored at destination.
    Executions<V> NodeSelectionListCommands.lmove​(K source, K destination, LMoveArgs args)
    Atomically returns and removes the first/last element (head/tail depending on the wherefrom argument) of the list stored at source, and pushes the element at the first/last element (head/tail depending on the whereto argument) of the list stored at destination.