AI agents: use the documentation index at llms.txt to locate machine-readable pages. This section is indexed by https://docs.particular.net/transports/llms.txt. The markdown version of this page is served as plain text. An MCP server at /mcp serves the same content via the search_docs and read_doc tools; it is read-only and needs no credentials. Markdown versions of documentation pages are available by appending .md to the page URL. Directory URLs use index.md. They are served as text/plain because some retrieval backends reject text/markdown.

Transactions and delivery guarantees

Target Version:
NServiceBus 7.x
Standard support for version 7.x of NServiceBus has expired. For more information see our Support Policy.

The RabbitMQ transport supports the following transport transaction modes:

  • Transport transaction - receive only
  • Unreliable (transactions disabled)

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.

Unreliable (transactions disabled)

Like in ReceiveOnly mode, messages are consumed in manual acknowledgment mode. Regardless of whether a message is successfully processed, it is acknowledged via the AMQP basic.ack method after the processing attempt. This means a message will be attempted once and moved to the error queue if it fails.