Reputation: 4612
When a consumer connects to a receive endpoint, a uniquely named exchange and queue is created such as:
bus-{MachineName}-{ApplicationName}-{Identifier}
What is the purpose of this queue / exchange? Are there any docs detailing this?
Upvotes: 0
Views: 228
Reputation: 19630
This a non-durable queue and exchange per endpoint, used to handle request-response. Responses are sent to that address, as well as faults.
Upvotes: 1