Uses of Class
io.lettuce.core.AclCategory
| 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.models.command |
Model and parser to for the
COMMAND and COMMAND INFO output. |
-
Uses of AclCategory in io.lettuce.core
Methods in io.lettuce.core that return AclCategory Modifier and Type Method Description static AclCategoryAclCategory. valueOf(String name)Returns the enum constant of this type with the specified name.static AclCategory[]AclCategory. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.lettuce.core that return types with arguments of type AclCategory Modifier and Type Method Description RedisFuture<Set<AclCategory>>AbstractRedisAsyncCommands. aclCat()Mono<Set<AclCategory>>AbstractRedisReactiveCommands. aclCat()Methods in io.lettuce.core with parameters of type AclCategory Modifier and Type Method Description RedisFuture<Set<CommandType>>AbstractRedisAsyncCommands. aclCat(AclCategory category)Mono<Set<CommandType>>AbstractRedisReactiveCommands. aclCat(AclCategory category)AclSetuserArgsAclSetuserArgs. addCategory(AclCategory category)Adds all the commands in the specified category to the list of commands the user is able to execute.static AclSetuserArgsAclSetuserArgs.Builder. addCategory(AclCategory category)Creates newAclSetuserArgsand adds all the commands in the specified category to the list of commands the user is able to execute.static AclSetuserArgsAclSetuserArgs.Builder. removeCategory(AclCategory category)Creates newAclSetuserArgsand removes all the commands in the specified category to the list of commands the user is able to execute.AclSetuserArgsAclSetuserArgs. removeCategory(AclCategory category)Removes all the commands in the specified category to the list of commands the user is able to execute. -
Uses of AclCategory in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async that return types with arguments of type AclCategory Modifier and Type Method Description RedisFuture<Set<AclCategory>>RedisAclAsyncCommands. aclCat()The command shows the available ACL categories if called without arguments.Methods in io.lettuce.core.api.async with parameters of type AclCategory Modifier and Type Method Description RedisFuture<Set<CommandType>>RedisAclAsyncCommands. aclCat(AclCategory category)The command shows all the Redis commands in the specified category. -
Uses of AclCategory in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive that return types with arguments of type AclCategory Modifier and Type Method Description Mono<Set<AclCategory>>RedisAclReactiveCommands. aclCat()The command shows the available ACL categories if called without arguments.Methods in io.lettuce.core.api.reactive with parameters of type AclCategory Modifier and Type Method Description Mono<Set<CommandType>>RedisAclReactiveCommands. aclCat(AclCategory category)The command shows all the Redis commands in the specified category. -
Uses of AclCategory in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync that return types with arguments of type AclCategory Modifier and Type Method Description Set<AclCategory>RedisAclCommands. aclCat()The command shows the available ACL categories if called without arguments.Methods in io.lettuce.core.api.sync with parameters of type AclCategory Modifier and Type Method Description Set<CommandType>RedisAclCommands. aclCat(AclCategory category)The command shows all the Redis commands in the specified category. -
Uses of AclCategory in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async that return types with arguments of type AclCategory Modifier and Type Method Description AsyncExecutions<Set<AclCategory>>NodeSelectionAclAsyncCommands. aclCat()The command shows the available ACL categories if called without arguments.Methods in io.lettuce.core.cluster.api.async with parameters of type AclCategory Modifier and Type Method Description AsyncExecutions<Set<CommandType>>NodeSelectionAclAsyncCommands. aclCat(AclCategory category)The command shows all the Redis commands in the specified category. -
Uses of AclCategory in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync that return types with arguments of type AclCategory Modifier and Type Method Description Executions<Set<AclCategory>>NodeSelectionAclCommands. aclCat()The command shows the available ACL categories if called without arguments.Methods in io.lettuce.core.cluster.api.sync with parameters of type AclCategory Modifier and Type Method Description Executions<Set<CommandType>>NodeSelectionAclCommands. aclCat(AclCategory category)The command shows all the Redis commands in the specified category. -
Uses of AclCategory in io.lettuce.core.models.command
Fields in io.lettuce.core.models.command with type parameters of type AclCategory Modifier and Type Field Description protected static Map<String,AclCategory>CommandDetailParser. ACL_CATEGORY_MAPPINGMethods in io.lettuce.core.models.command that return types with arguments of type AclCategory Modifier and Type Method Description Set<AclCategory>CommandDetail. getAclCategories()Method parameters in io.lettuce.core.models.command with type arguments of type AclCategory Modifier and Type Method Description voidCommandDetail. setAclCategories(Set<AclCategory> aclCategories)