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
I think it would be good to document how to keep a consumer alive, or handle exceptions gracefully within a reactive stream. I came up with a solution but it doesn't seem correct.
Improvement Suggestion
All of the example I've found online show the receiver being closed after it has consumed events. I think a lot of people have use cases where there is a listener constantly running, and handles messages as they come in as opposed to just shutting down after they've all been consumed.
Did you find a solution to this problem or did you manage to work around it? We have a problem that occasionally causes our receiver to terminate that we would like to mitigate, c.f. #186
Documentation Issue
I think it would be good to document how to keep a consumer alive, or handle exceptions gracefully within a reactive stream. I came up with a solution but it doesn't seem correct.
Improvement Suggestion
All of the example I've found online show the receiver being closed after it has consumed events. I think a lot of people have use cases where there is a listener constantly running, and handles messages as they come in as opposed to just shutting down after they've all been consumed.
Additional context
Instead of using a
Receiver
, I ended up falling back to the annotation-driven style of listening, and this appears to work well enough for me.The text was updated successfully, but these errors were encountered: