Uses of Class
io.lettuce.core.UnblockType
| 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 UnblockType in io.lettuce.core
Methods in io.lettuce.core that return UnblockType Modifier and Type Method Description static UnblockTypeUnblockType. valueOf(String name)Returns the enum constant of this type with the specified name.static UnblockType[]UnblockType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.lettuce.core with parameters of type UnblockType Modifier and Type Method Description RedisFuture<Long>AbstractRedisAsyncCommands. clientUnblock(long id, UnblockType type)Mono<Long>AbstractRedisReactiveCommands. clientUnblock(long id, UnblockType type) -
Uses of UnblockType in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type UnblockType Modifier and Type Method Description RedisFuture<Long>RedisServerAsyncCommands. clientUnblock(long id, UnblockType type)Unblock the specified blocked client. -
Uses of UnblockType in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type UnblockType Modifier and Type Method Description Mono<Long>RedisServerReactiveCommands. clientUnblock(long id, UnblockType type)Unblock the specified blocked client. -
Uses of UnblockType in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type UnblockType Modifier and Type Method Description LongRedisServerCommands. clientUnblock(long id, UnblockType type)Unblock the specified blocked client. -
Uses of UnblockType in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type UnblockType Modifier and Type Method Description AsyncExecutions<Long>NodeSelectionServerAsyncCommands. clientUnblock(long id, UnblockType type)Unblock the specified blocked client. -
Uses of UnblockType in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type UnblockType Modifier and Type Method Description Executions<Long>NodeSelectionServerCommands. clientUnblock(long id, UnblockType type)Unblock the specified blocked client.