Uses of Class
io.lettuce.core.KillArgs
| 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.sentinel |
Redis Sentinel connection classes.
|
| io.lettuce.core.sentinel.api.async |
Redis Sentinel API for asynchronous executed commands.
|
| io.lettuce.core.sentinel.api.reactive |
Redis Sentinel API for reactive command execution.
|
| io.lettuce.core.sentinel.api.sync |
Redis Sentinel API for synchronous executed commands.
|
-
Uses of KillArgs in io.lettuce.core
Methods in io.lettuce.core that return KillArgs Modifier and Type Method Description KillArgsKillArgs. addr(String addr)Kill the client ataddr(Remote Address).static KillArgsKillArgs.Builder. addr(String addr)Creates newKillArgssetting ADDR (Remote Address).static KillArgsKillArgs.Builder. id(long id)Creates newKillArgssetting ID.KillArgsKillArgs. id(long id)Kill the client with its clientid.static KillArgsKillArgs.Builder. laddr(String laddr)Creates newKillArgssetting LADDR (Local Address).KillArgsKillArgs. laddr(String laddr)Kill the client atladdr(Local Address).static KillArgsKillArgs.Builder. skipme()Creates newKillArgsand enabling SKIPME YES.KillArgsKillArgs. skipme()By default this option is enabled, that is, the client calling the command will not get killed, however setting this option to no will have the effect of also killing the client calling the command.KillArgsKillArgs. skipme(boolean state)By default this option is enabled, that is, the client calling the command will not get killed, however setting this option to no will have the effect of also killing the client calling the command.KillArgsKillArgs. type(io.lettuce.core.KillArgs.Type type)This closes the connections of all the clients in the specifiedKillArgs.Type.static KillArgsKillArgs.Builder. typeMaster()Creates newKillArgssetting TYPE MASTER.static KillArgsKillArgs.Builder. typeNormal()Creates newKillArgssetting TYPE NORMAL.static KillArgsKillArgs.Builder. typePubsub()Creates newKillArgssetting TYPE PUBSUB.static KillArgsKillArgs.Builder. typeSlave()Creates newKillArgssetting TYPE SLAVE.static KillArgsKillArgs.Builder. user(String username)Creates newKillArgssetting USER.KillArgsKillArgs. user(String username)Closes all the connections that are authenticated with the specified ACLusername.Methods in io.lettuce.core with parameters of type KillArgs Modifier and Type Method Description RedisFuture<Long>AbstractRedisAsyncCommands. clientKill(KillArgs killArgs)Mono<Long>AbstractRedisReactiveCommands. clientKill(KillArgs killArgs) -
Uses of KillArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type KillArgs Modifier and Type Method Description RedisFuture<Long>RedisServerAsyncCommands. clientKill(KillArgs killArgs)Kill connections of clients which are filtered bykillArgs. -
Uses of KillArgs in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type KillArgs Modifier and Type Method Description Mono<Long>RedisServerReactiveCommands. clientKill(KillArgs killArgs)Kill connections of clients which are filtered bykillArgs. -
Uses of KillArgs in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type KillArgs Modifier and Type Method Description LongRedisServerCommands. clientKill(KillArgs killArgs)Kill connections of clients which are filtered bykillArgs. -
Uses of KillArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type KillArgs Modifier and Type Method Description AsyncExecutions<Long>NodeSelectionServerAsyncCommands. clientKill(KillArgs killArgs)Kill connections of clients which are filtered bykillArgs. -
Uses of KillArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type KillArgs Modifier and Type Method Description Executions<Long>NodeSelectionServerCommands. clientKill(KillArgs killArgs)Kill connections of clients which are filtered bykillArgs. -
Uses of KillArgs in io.lettuce.core.sentinel
Methods in io.lettuce.core.sentinel with parameters of type KillArgs Modifier and Type Method Description RedisFuture<Long>RedisSentinelAsyncCommandsImpl. clientKill(KillArgs killArgs)Mono<Long>RedisSentinelReactiveCommandsImpl. clientKill(KillArgs killArgs) -
Uses of KillArgs in io.lettuce.core.sentinel.api.async
Methods in io.lettuce.core.sentinel.api.async with parameters of type KillArgs Modifier and Type Method Description RedisFuture<Long>RedisSentinelAsyncCommands. clientKill(KillArgs killArgs)Kill connections of clients which are filtered bykillArgs. -
Uses of KillArgs in io.lettuce.core.sentinel.api.reactive
Methods in io.lettuce.core.sentinel.api.reactive with parameters of type KillArgs Modifier and Type Method Description Mono<Long>RedisSentinelReactiveCommands. clientKill(KillArgs killArgs)Kill connections of clients which are filtered bykillArgs. -
Uses of KillArgs in io.lettuce.core.sentinel.api.sync
Methods in io.lettuce.core.sentinel.api.sync with parameters of type KillArgs Modifier and Type Method Description LongRedisSentinelCommands. clientKill(KillArgs killArgs)Kill connections of clients which are filtered bykillArgs.