-
Notifications
You must be signed in to change notification settings - Fork 196
Open
Labels
Description
We have discussed a bit about acknowledgement, when using CLIENT_ACKNOWLEDGE during the jms connector.
When i try this and my Inbound annotated method throws an Exception, this results in the message being "stuck" in the client.
If the broker restarts for some reason, this will typically mean that the message will be redelivered.
Another approach could be that in the inbound annotated method is surrounded with at try - catch, where the catch will put the unaccepted message on a backout queue.
But this seems like a very general issue, so would it be possible to create an annotation that could take of this?
Like
@Backout(queue="SOME_QUEUE_BACKOUT")