Class BlockingPubSubCommandsImpl<V>
- java.lang.Object
-
- io.quarkus.redis.runtime.datasource.AbstractRedisCommandGroup
-
- io.quarkus.redis.runtime.datasource.BlockingPubSubCommandsImpl<V>
-
- All Implemented Interfaces:
PubSubCommands<V>,RedisCommands
public class BlockingPubSubCommandsImpl<V> extends AbstractRedisCommandGroup implements PubSubCommands<V>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.quarkus.redis.datasource.pubsub.PubSubCommands
PubSubCommands.RedisSubscriber
-
-
Field Summary
-
Fields inherited from class io.quarkus.redis.runtime.datasource.AbstractRedisCommandGroup
ds, timeout
-
-
Constructor Summary
Constructors Constructor Description BlockingPubSubCommandsImpl(RedisDataSource ds, ReactivePubSubCommands<V> reactive, Duration timeout)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidpublish(String channel, V message)Publishes a message to a given channelPubSubCommands.RedisSubscribersubscribe(String channel, Consumer<V> onMessage)Subscribes to a given channel.PubSubCommands.RedisSubscribersubscribe(String channel, Consumer<V> onMessage, Runnable onEnd, Consumer<Throwable> onException)Subscribes to a given channel.PubSubCommands.RedisSubscribersubscribe(List<String> channels, Consumer<V> onMessage)Subscribes to the given channels.PubSubCommands.RedisSubscribersubscribe(List<String> channels, Consumer<V> onMessage, Runnable onEnd, Consumer<Throwable> onException)Subscribes to the given channels.PubSubCommands.RedisSubscribersubscribeToPattern(String pattern, Consumer<V> onMessage)Subscribes to a given pattern likechan*l.PubSubCommands.RedisSubscribersubscribeToPattern(String pattern, Consumer<V> onMessage, Runnable onEnd, Consumer<Throwable> onException)Subscribes to a given pattern likechan*l.PubSubCommands.RedisSubscribersubscribeToPatterns(List<String> patterns, Consumer<V> onMessage)Subscribes to the given patterns likechan*l.PubSubCommands.RedisSubscribersubscribeToPatterns(List<String> patterns, Consumer<V> onMessage, Runnable onEnd, Consumer<Throwable> onException)Subscribes to the given patterns likechan*l.-
Methods inherited from class io.quarkus.redis.runtime.datasource.AbstractRedisCommandGroup
getDataSource
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.quarkus.redis.datasource.RedisCommands
getDataSource
-
-
-
-
Constructor Detail
-
BlockingPubSubCommandsImpl
public BlockingPubSubCommandsImpl(RedisDataSource ds, ReactivePubSubCommands<V> reactive, Duration timeout)
-
-
Method Detail
-
publish
public void publish(String channel, V message)
Description copied from interface:PubSubCommandsPublishes a message to a given channel- Specified by:
publishin interfacePubSubCommands<V>- Parameters:
channel- the channelmessage- the message
-
subscribe
public PubSubCommands.RedisSubscriber subscribe(String channel, Consumer<V> onMessage)
Description copied from interface:PubSubCommandsSubscribes to a given channel.- Specified by:
subscribein interfacePubSubCommands<V>- Parameters:
channel- the channelonMessage- the message consumer. Be aware that this callback is invoked for each message sent to the given channel, and is invoked on the I/O thread. So, you must not block. Offload to a separate thread if needed.- Returns:
- the subscriber object that lets you unsubscribe
-
subscribeToPattern
public PubSubCommands.RedisSubscriber subscribeToPattern(String pattern, Consumer<V> onMessage)
Description copied from interface:PubSubCommandsSubscribes to a given pattern likechan*l.- Specified by:
subscribeToPatternin interfacePubSubCommands<V>- Parameters:
pattern- the patternonMessage- the message consumer. Be aware that this callback is invoked for each message sent to the channels matching the pattern, and is invoked on the I/O thread. So, you must not block. Offload to a separate thread if needed.- Returns:
- the subscriber object that lets you unsubscribe
-
subscribeToPatterns
public PubSubCommands.RedisSubscriber subscribeToPatterns(List<String> patterns, Consumer<V> onMessage)
Description copied from interface:PubSubCommandsSubscribes to the given patterns likechan*l.- Specified by:
subscribeToPatternsin interfacePubSubCommands<V>- Parameters:
patterns- the patternsonMessage- the message consumer. Be aware that this callback is invoked for each message sent to the channels matching the pattern, and is invoked on the I/O thread. So, you must not block. Offload to a separate thread if needed.- Returns:
- the subscriber object that lets you unsubscribe
-
subscribe
public PubSubCommands.RedisSubscriber subscribe(List<String> channels, Consumer<V> onMessage)
Description copied from interface:PubSubCommandsSubscribes to the given channels.- Specified by:
subscribein interfacePubSubCommands<V>- Parameters:
channels- the channelsonMessage- the message consumer. Be aware that this callback is invoked for each message sent to the given channels, and is invoked on the I/O thread. So, you must not block. Offload to a separate thread if needed.- Returns:
- the subscriber object that lets you unsubscribe
-
subscribe
public PubSubCommands.RedisSubscriber subscribe(String channel, Consumer<V> onMessage, Runnable onEnd, Consumer<Throwable> onException)
Description copied from interface:PubSubCommandsSubscribes to a given channel.- Specified by:
subscribein interfacePubSubCommands<V>- Parameters:
channel- the channelonMessage- the message consumer. Be aware that this callback is invoked for each message sent to the given channel, and is invoked on the I/O thread. So, you must not block. Offload to a separate thread if needed.onEnd- the end handler. Be aware that this callback is invoked on the I/O thread. So, you must not block. Offload to a separate thread if needed.onException- the exception handler. Be aware that this callback is invoked on the I/O thread. So, you must not block. Offload to a separate thread if needed.- Returns:
- the subscriber object that lets you unsubscribe
-
subscribeToPattern
public PubSubCommands.RedisSubscriber subscribeToPattern(String pattern, Consumer<V> onMessage, Runnable onEnd, Consumer<Throwable> onException)
Description copied from interface:PubSubCommandsSubscribes to a given pattern likechan*l.- Specified by:
subscribeToPatternin interfacePubSubCommands<V>- Parameters:
pattern- the patternonMessage- the message consumer. Be aware that this callback is invoked for each message sent to the channels matching the pattern, and is invoked on the I/O thread. So, you must not block. Offload to a separate thread if needed.onEnd- the end handler. Be aware that this callback is invoked on the I/O thread. So, you must not block. Offload to a separate thread if needed.onException- the exception handler. Be aware that this callback is invoked on the I/O thread. So, you must not block. Offload to a separate thread if needed.- Returns:
- the subscriber object that lets you unsubscribe
-
subscribeToPatterns
public PubSubCommands.RedisSubscriber subscribeToPatterns(List<String> patterns, Consumer<V> onMessage, Runnable onEnd, Consumer<Throwable> onException)
Description copied from interface:PubSubCommandsSubscribes to the given patterns likechan*l.- Specified by:
subscribeToPatternsin interfacePubSubCommands<V>- Parameters:
patterns- the patternsonMessage- the message consumer. Be aware that this callback is invoked for each message sent to the channels matching the pattern, and is invoked on the I/O thread. So, you must not block. Offload to a separate thread if needed.onEnd- the end handler. Be aware that this callback is invoked on the I/O thread. So, you must not block. Offload to a separate thread if needed.onException- the exception handler. Be aware that this callback is invoked on the I/O thread. So, you must not block. Offload to a separate thread if needed.- Returns:
- the subscriber object that lets you unsubscribe
-
subscribe
public PubSubCommands.RedisSubscriber subscribe(List<String> channels, Consumer<V> onMessage, Runnable onEnd, Consumer<Throwable> onException)
Description copied from interface:PubSubCommandsSubscribes to the given channels.- Specified by:
subscribein interfacePubSubCommands<V>- Parameters:
channels- the channelsonMessage- the message consumer. Be aware that this callback is invoked for each message sent to the given channels, and is invoked on the I/O thread. So, you must not block. Offload to a separate thread if needed.onEnd- the end handler. Be aware that this callback is invoked on the I/O thread. So, you must not block. Offload to a separate thread if needed.onException- the exception handler. Be aware that this callback is invoked on the I/O thread. So, you must not block. Offload to a separate thread if needed.- Returns:
- the subscriber object that lets you unsubscribe
-
-