Uses of Interface
io.lettuce.core.event.command.CommandListener
| Package | Description |
|---|---|
| io.lettuce.core |
The Redis client package containing
RedisClient for Redis Standalone and Redis Sentinel operations. |
-
Uses of CommandListener in io.lettuce.core
Classes in io.lettuce.core that implement CommandListener Modifier and Type Class Description static classCommandListenerWriter.CommandListenerMulticasterWraps multiple command listeners into one multicaster.Methods in io.lettuce.core that return types with arguments of type CommandListener Modifier and Type Method Description protected List<CommandListener>AbstractRedisClient. getCommandListeners()Methods in io.lettuce.core with parameters of type CommandListener Modifier and Type Method Description voidAbstractRedisClient. addListener(CommandListener listener)Add a listener for Redis Command events.voidAbstractRedisClient. removeListener(CommandListener listener)Removes a listener.Method parameters in io.lettuce.core with type arguments of type CommandListener Modifier and Type Method Description static booleanCommandListenerWriter. isSupported(List<CommandListener> commandListeners)Check whether the list ofCommandListeneris not empty.Constructor parameters in io.lettuce.core with type arguments of type CommandListener Constructor Description CommandListenerMulticaster(List<CommandListener> listeners)CommandListenerWriter(RedisChannelWriter delegate, List<CommandListener> listeners)