You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Registering a MessageListener with RedisMessageListenerContainer or starting to receive messages from RedisMessageListenerContainer requires awaiting until the actual subscription has been registered with Redis. Since subscribing triggers asynchronous activity, the only means to synchronize are sleep timers.
It would be good to actually consume Redis subscription confirmations to [P][UN]SUBSCRIBE commands through an interface along the lines of:
Registering a
MessageListener
withRedisMessageListenerContainer
or starting toreceive
messages fromRedisMessageListenerContainer
requires awaiting until the actual subscription has been registered with Redis. Since subscribing triggers asynchronous activity, the only means to synchronize are sleep timers.It would be good to actually consume Redis subscription confirmations to
[P][UN]SUBSCRIBE
commands through an interface along the lines of:It should be possible to let a
MessageListener
class implementSubscriptionListener
to bind the actual notifications to the message listener.The text was updated successfully, but these errors were encountered: