The RabbitMQ transport supports the following transport transaction modes:
- Transport transaction - receive only
Transport transaction - receive only
In ReceiveOnly
mode, messages are consumed in manual acknowledgment mode. Successfully processed messages are acknowledged via the AMQP basic.ack method, at which point the broker will remove them from the queue. Failed messages that need to be retried are re-queued via the AMQP basic.reject method.
If the connection to the broker is lost before a message can be acknowledged, even if the message was successfully processed, the broker will automatically re-queue the message. This will result in the endpoint processing the same message multiple times.