Uses of Class
io.lettuce.core.BitFieldArgs
| 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 BitFieldArgs in io.lettuce.core
Methods in io.lettuce.core that return BitFieldArgs Modifier and Type Method Description static BitFieldArgsBitFieldArgs.Builder. get(BitFieldArgs.BitFieldType bitFieldType, int offset)Create a newGETsubcommand.static BitFieldArgsBitFieldArgs.Builder. get(BitFieldArgs.BitFieldType bitFieldType, BitFieldArgs.Offset offset)Create a newGETsubcommand.BitFieldArgsBitFieldArgs. get()Adds a newGETsubcommand using offset0and the field type of the previous command.BitFieldArgsBitFieldArgs. get(int offset)Adds a newGETsubcommand using the field type of the previous command.BitFieldArgsBitFieldArgs. get(BitFieldArgs.BitFieldType bitFieldType)Adds a newGETsubcommand using offset0.BitFieldArgsBitFieldArgs. get(BitFieldArgs.BitFieldType bitFieldType, int offset)Adds a newGETsubcommand.BitFieldArgsBitFieldArgs. get(BitFieldArgs.BitFieldType bitFieldType, BitFieldArgs.Offset offset)Adds a newGETsubcommand.static BitFieldArgsBitFieldArgs.Builder. incrBy(BitFieldArgs.BitFieldType bitFieldType, int offset, long value)Create a newINCRBYsubcommand.static BitFieldArgsBitFieldArgs.Builder. incrBy(BitFieldArgs.BitFieldType bitFieldType, BitFieldArgs.Offset offset, long value)Create a newINCRBYsubcommand.BitFieldArgsBitFieldArgs. incrBy(int offset, long value)Adds a newINCRBYsubcommand using the field type of the previous command.BitFieldArgsBitFieldArgs. incrBy(long value)Adds a newINCRBYsubcommand using offset0and the field type of the previous command.BitFieldArgsBitFieldArgs. incrBy(BitFieldArgs.BitFieldType bitFieldType, int offset, long value)Adds a newINCRBYsubcommand.BitFieldArgsBitFieldArgs. incrBy(BitFieldArgs.BitFieldType bitFieldType, long value)Adds a newINCRBYsubcommand using offset0.BitFieldArgsBitFieldArgs. incrBy(BitFieldArgs.BitFieldType bitFieldType, BitFieldArgs.Offset offset, long value)Adds a newINCRBYsubcommand.static BitFieldArgsBitFieldArgs.Builder. overflow(BitFieldArgs.OverflowType overflowType)Adds a newOVERFLOWsubcommand.BitFieldArgsBitFieldArgs. overflow(BitFieldArgs.OverflowType overflowType)Adds a newOVERFLOWsubcommand.static BitFieldArgsBitFieldArgs.Builder. set(BitFieldArgs.BitFieldType bitFieldType, int offset, long value)Create a newSETsubcommand.static BitFieldArgsBitFieldArgs.Builder. set(BitFieldArgs.BitFieldType bitFieldType, BitFieldArgs.Offset offset, long value)Create a newSETsubcommand.BitFieldArgsBitFieldArgs. set(int offset, long value)Adds a newSETsubcommand using the field type of the previous command.BitFieldArgsBitFieldArgs. set(long value)Adds a newSETsubcommand using offset0and the field type of the previous command.BitFieldArgsBitFieldArgs. set(BitFieldArgs.BitFieldType bitFieldType, int offset, long value)Adds a newSETsubcommand.BitFieldArgsBitFieldArgs. set(BitFieldArgs.BitFieldType bitFieldType, long value)Adds a newSETsubcommand using offset0.BitFieldArgsBitFieldArgs. set(BitFieldArgs.BitFieldType bitFieldType, BitFieldArgs.Offset offset, long value)Adds a newSETsubcommand.Methods in io.lettuce.core with parameters of type BitFieldArgs Modifier and Type Method Description RedisFuture<List<Long>>AbstractRedisAsyncCommands. bitfield(K key, BitFieldArgs bitFieldArgs)Flux<Value<Long>>AbstractRedisReactiveCommands. bitfield(K key, BitFieldArgs args) -
Uses of BitFieldArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type BitFieldArgs Modifier and Type Method Description RedisFuture<List<Long>>RedisStringAsyncCommands. bitfield(K key, BitFieldArgs bitFieldArgs)ExecuteBITFIELDwith its subcommands. -
Uses of BitFieldArgs in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type BitFieldArgs Modifier and Type Method Description Flux<Value<Long>>RedisStringReactiveCommands. bitfield(K key, BitFieldArgs bitFieldArgs)ExecuteBITFIELDwith its subcommands. -
Uses of BitFieldArgs in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type BitFieldArgs Modifier and Type Method Description List<Long>RedisStringCommands. bitfield(K key, BitFieldArgs bitFieldArgs)ExecuteBITFIELDwith its subcommands. -
Uses of BitFieldArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type BitFieldArgs Modifier and Type Method Description AsyncExecutions<List<Long>>NodeSelectionStringAsyncCommands. bitfield(K key, BitFieldArgs bitFieldArgs)ExecuteBITFIELDwith its subcommands. -
Uses of BitFieldArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type BitFieldArgs Modifier and Type Method Description Executions<List<Long>>NodeSelectionStringCommands. bitfield(K key, BitFieldArgs bitFieldArgs)ExecuteBITFIELDwith its subcommands.