Loopback Configuration OptionsΒΆ

ServiceBusFactory.New(sbc =>
{
  //loopback is the default
  sbc.ReceiveFrom("loopback://localhost/queue");
});

Note

Great for testing, not great for production.

So the loopback uses the protocol ‘loopback’ - localhost is the machine name and then you can use whatever you want for the ‘queue’ bit as long as each bus instance has a unique one, you should be good to go.

Project Versions

Previous topic

RabbitMQ Configuration Options

Next topic

Using MassTransit with an IoC Container

This Page