PubSubCommands.RedisSubscriber |
PubSubCommands.subscribe(String channel,
Consumer<V> onMessage) |
Subscribes to a given channel.
|
PubSubCommands.RedisSubscriber |
PubSubCommands.subscribe(String channel,
Consumer<V> onMessage,
Runnable onEnd,
Consumer<Throwable> onException) |
Subscribes to a given channel.
|
PubSubCommands.RedisSubscriber |
PubSubCommands.subscribe(List<String> channels,
Consumer<V> onMessage) |
Subscribes to the given channels.
|
PubSubCommands.RedisSubscriber |
PubSubCommands.subscribe(List<String> channels,
Consumer<V> onMessage,
Runnable onEnd,
Consumer<Throwable> onException) |
Subscribes to the given channels.
|
PubSubCommands.RedisSubscriber |
PubSubCommands.subscribeToPattern(String pattern,
Consumer<V> onMessage) |
Subscribes to a given pattern like chan*l .
|
PubSubCommands.RedisSubscriber |
PubSubCommands.subscribeToPattern(String pattern,
Consumer<V> onMessage,
Runnable onEnd,
Consumer<Throwable> onException) |
Subscribes to a given pattern like chan*l .
|
PubSubCommands.RedisSubscriber |
PubSubCommands.subscribeToPatterns(List<String> patterns,
Consumer<V> onMessage) |
Subscribes to the given patterns like chan*l .
|
PubSubCommands.RedisSubscriber |
PubSubCommands.subscribeToPatterns(List<String> patterns,
Consumer<V> onMessage,
Runnable onEnd,
Consumer<Throwable> onException) |
Subscribes to the given patterns like chan*l .
|