Uses of Interface
io.quarkus.redis.datasource.pubsub.PubSubCommands.RedisSubscriber
-
Packages that use PubSubCommands.RedisSubscriber Package Description io.quarkus.redis.datasource.pubsub io.quarkus.redis.runtime.datasource -
-
Uses of PubSubCommands.RedisSubscriber in io.quarkus.redis.datasource.pubsub
Methods in io.quarkus.redis.datasource.pubsub that return PubSubCommands.RedisSubscriber Modifier and Type Method Description PubSubCommands.RedisSubscriberPubSubCommands. subscribe(String channel, Consumer<V> onMessage)Subscribes to a given channel.PubSubCommands.RedisSubscriberPubSubCommands. subscribe(List<String> channels, Consumer<V> onMessage)Subscribes to the given channels.PubSubCommands.RedisSubscriberPubSubCommands. subscribeToPattern(String pattern, Consumer<V> onMessage)Subscribes to a given pattern likechan*l.PubSubCommands.RedisSubscriberPubSubCommands. subscribeToPatterns(List<String> patterns, Consumer<V> onMessage)Subscribes to the given patterns likechan*l. -
Uses of PubSubCommands.RedisSubscriber in io.quarkus.redis.runtime.datasource
Methods in io.quarkus.redis.runtime.datasource that return PubSubCommands.RedisSubscriber Modifier and Type Method Description PubSubCommands.RedisSubscriberBlockingPubSubCommandsImpl. subscribe(String channel, Consumer<V> onMessage)PubSubCommands.RedisSubscriberBlockingPubSubCommandsImpl. subscribe(List<String> channels, Consumer<V> onMessage)PubSubCommands.RedisSubscriberBlockingPubSubCommandsImpl. subscribeToPattern(String pattern, Consumer<V> onMessage)PubSubCommands.RedisSubscriberBlockingPubSubCommandsImpl. subscribeToPatterns(List<String> patterns, Consumer<V> onMessage)
-