-
Notifications
You must be signed in to change notification settings - Fork 84
Configuring Azure Service Bus Transport
Damian Maclennan edited this page Nov 10, 2017
·
3 revisions
To use Azure Service Bus you first need to install the ASB transport as a nuget package.
Install-Package Nimbus.Transports.AzureServiceBus
Then you configure the transport and pass it to the Bus Builder.
var transport = new AzureServiceBusTransportConfiguration().WithConnectionString(connectionString);
var bus = new BusBuilder().Configure()
.WithNames("MyApplication", Environment.MachineName)
.WithTransport(transport)
.WithTypesFrom(typeProvider)
.Build();
Azure Service Bus
Windows Service Bus
Redis
In Process
Configuring Nimbus With Autofac
Configuring Nimbus With Windsor
Configuring Nimbus With Ninject
Sending a Command on the Bus
Publishing an Event on the Bus
Request Response
Multicast Request Response
Multicast Request Response - take First
Large Message Support