Uses of Class
io.lettuce.core.protocol.CommandType
| 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.
|
| io.lettuce.core.protocol |
Redis protocol layer abstraction.
|
-
Uses of CommandType in io.lettuce.core
Methods in io.lettuce.core that return types with arguments of type CommandType Modifier and Type Method Description RedisFuture<Set<CommandType>>AbstractRedisAsyncCommands. aclCat(AclCategory category)Mono<Set<CommandType>>AbstractRedisReactiveCommands. aclCat(AclCategory category)Methods in io.lettuce.core with parameters of type CommandType Modifier and Type Method Description AclSetuserArgsAclSetuserArgs. addCommand(CommandType command)Adds this command to the list of the commands the user can call.AclSetuserArgsAclSetuserArgs. addCommand(CommandType command, ProtocolKeyword subCommand)Adds all the commands there are in the server.static AclSetuserArgsAclSetuserArgs.Builder. addCommand(CommandType command)Creates newAclSetuserArgsand adds this command to the list of the commands the user can call.static AclSetuserArgsAclSetuserArgs.Builder. addCommand(CommandType command, ProtocolKeyword subCommand)Creates newAclSetuserArgsand adds the specified command to the list of the commands the user can execute.RedisFuture<List<Object>>AbstractRedisAsyncCommands. commandInfo(CommandType... commands)Flux<Object>AbstractRedisReactiveCommands. commandInfo(CommandType... commands)protected <T> Mono<T>AbstractRedisReactiveCommands. createMono(CommandType type, CommandOutput<K,V,T> output, CommandArgs<K,V> args)protected <T> RedisFuture<T>AbstractRedisAsyncCommands. dispatch(CommandType type, CommandOutput<K,V,T> output)protected <T> RedisFuture<T>AbstractRedisAsyncCommands. dispatch(CommandType type, CommandOutput<K,V,T> output, CommandArgs<K,V> args)static AclSetuserArgsAclSetuserArgs.Builder. removeCommand(CommandType command)Creates newAclSetuserArgsand removes this command to the list of the commands the user can call.static AclSetuserArgsAclSetuserArgs.Builder. removeCommand(CommandType command, ProtocolKeyword subCommand)Creates newAclSetuserArgsand removes the specified command to the list of the commands the user can execute.AclSetuserArgsAclSetuserArgs. removeCommand(CommandType command)Removes this command to the list of the commands the user can call.AclSetuserArgsAclSetuserArgs. removeCommand(CommandType command, ProtocolKeyword subCommand)Removes the specified command to the list of the commands the user can execute. -
Uses of CommandType in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async that return types with arguments of type CommandType Modifier and Type Method Description RedisFuture<Set<CommandType>>RedisAclAsyncCommands. aclCat(AclCategory category)The command shows all the Redis commands in the specified category.Methods in io.lettuce.core.api.async with parameters of type CommandType Modifier and Type Method Description RedisFuture<List<Object>>RedisServerAsyncCommands. commandInfo(CommandType... commands)Returns an array reply of details about the requested commands. -
Uses of CommandType in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive that return types with arguments of type CommandType Modifier and Type Method Description Mono<Set<CommandType>>RedisAclReactiveCommands. aclCat(AclCategory category)The command shows all the Redis commands in the specified category.Methods in io.lettuce.core.api.reactive with parameters of type CommandType Modifier and Type Method Description Flux<Object>RedisServerReactiveCommands. commandInfo(CommandType... commands)Returns an array reply of details about the requested commands. -
Uses of CommandType in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync that return types with arguments of type CommandType Modifier and Type Method Description Set<CommandType>RedisAclCommands. aclCat(AclCategory category)The command shows all the Redis commands in the specified category.Methods in io.lettuce.core.api.sync with parameters of type CommandType Modifier and Type Method Description List<Object>RedisServerCommands. commandInfo(CommandType... commands)Returns an array reply of details about the requested commands. -
Uses of CommandType in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async that return types with arguments of type CommandType Modifier and Type Method Description AsyncExecutions<Set<CommandType>>NodeSelectionAclAsyncCommands. aclCat(AclCategory category)The command shows all the Redis commands in the specified category.Methods in io.lettuce.core.cluster.api.async with parameters of type CommandType Modifier and Type Method Description AsyncExecutions<List<Object>>NodeSelectionServerAsyncCommands. commandInfo(CommandType... commands)Returns an array reply of details about the requested commands. -
Uses of CommandType in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync that return types with arguments of type CommandType Modifier and Type Method Description Executions<Set<CommandType>>NodeSelectionAclCommands. aclCat(AclCategory category)The command shows all the Redis commands in the specified category.Methods in io.lettuce.core.cluster.api.sync with parameters of type CommandType Modifier and Type Method Description Executions<List<Object>>NodeSelectionServerCommands. commandInfo(CommandType... commands)Returns an array reply of details about the requested commands. -
Uses of CommandType in io.lettuce.core.protocol
Methods in io.lettuce.core.protocol that return CommandType Modifier and Type Method Description static CommandTypeCommandType. valueOf(String name)Returns the enum constant of this type with the specified name.static CommandType[]CommandType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.lettuce.core.protocol with parameters of type CommandType Modifier and Type Method Description CommandArgs<K,V>CommandArgs. add(CommandType type)Add aCommandTypeargument.protected <T> Command<K,V,T>BaseRedisCommandBuilder. createCommand(CommandType type, CommandOutput<K,V,T> output)protected <T> Command<K,V,T>BaseRedisCommandBuilder. createCommand(CommandType type, CommandOutput<K,V,T> output, CommandArgs<K,V> args)protected <T> Command<K,V,T>BaseRedisCommandBuilder. createCommand(CommandType type, CommandOutput<K,V,T> output, K key)protected <T> Command<K,V,T>BaseRedisCommandBuilder. createCommand(CommandType type, CommandOutput<K,V,T> output, K key, V value)protected <T> Command<K,V,T>BaseRedisCommandBuilder. createCommand(CommandType type, CommandOutput<K,V,T> output, K key, V[] values)