jms queues has jmsdeliverycount.If message read from queue one more time we can track with this property.What is the equvaliant of this RabbitMQ .net. I want to check how many times this message read from queue(in transactional reads)
Asked
Active
Viewed 668 times
2 Answers
1
Currently there is nothing out-of-the-box. All you get is a redelivery flag to say it has been redelivered, but not how many times.
You can track this issue.

Vanlightly
- 1,389
- 8
- 10
1
Quorum queues track the number of redeliveries, in the x-delivery-count
header. See here
There is a feature request to add the same to classic queues.

Gert van den Berg
- 2,448
- 31
- 41