Reputation: 15363
Does message acknowledgement use a timeout?
Is this implementation specific?
So for instance a broker delivers a message and never recieves an acknowledgment...period. At what point does the broker decide enough is enough or does it ever?
Upvotes: 2
Views: 1081
Reputation: 36664
Yes, this is implementation specific. A broker can try to redeliver the message several times and then give up (and move the message to a dead letter queue).
Upvotes: 1