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
Currently subscribe_messages yields the entire batch of messages, this can be useful if you intend to process the entire block of messages but it isn't helpful if you want to process one message at a time.
Specifically acking messages can only be done after the entire block of messages has been processes, rather than after each message.
The text was updated successfully, but these errors were encountered:
We can add a new method for single message subscription while leaving the existing batch subscription untouched.
Not all message clients support single message subscription. My understanding QPID for ActiveMQ does not. We don't have AMQP implementation yet.
Currently subscribe_messages yields the entire batch of messages, this can be useful if you intend to process the entire block of messages but it isn't helpful if you want to process one message at a time.
Specifically acking messages can only be done after the entire block of messages has been processes, rather than after each message.
The text was updated successfully, but these errors were encountered: