-
Notifications
You must be signed in to change notification settings - Fork 84
Configuring Nimbus With Windsor
We've gone through this blow by blow in the first section so if none of this makes sense go back and have a read there, let's just talk about the Windsor bits.
Getting Windsor
First thing you need to do is pull down the Windsor provider. This is via NuGet of course.
Install-Package Nimbus.Windsor
Now we configure Nimbus and register it with the container
// This is how you tell Nimbus where to find all your message types and handlers.
var typeProvider = new AssemblyScanningTypeProvider(Assembly.GetExecutingAssembly());
var container = new WindsorContainer();
// This line requires: using Nimbus.Windsor.Configuration
container.RegisterNimbus(typeProvider);
container.Register(Component.For<IBus>()
.ImplementedBy<Bus>()
.UsingFactoryMethod<IBus>(() => new BusBuilder()
.Configure()
.WithConnectionString(connectionString)
.WithNames("PingPong.Windsor", Environment.MachineName)
.WithTypesFrom(typeProvider)
.WithWindsorDefaults(container)
.Build())
.LifestyleSingleton()
.StartUsingMethod("Start")
);
container.RegisterNimbus(handlerTypesProvider);
There's an extension method that will register all of the various message handlers with the container. We call it with our handler type provider.
container.Register(Component.For<IBus>()
.ImplementedBy<Bus>()
.UsingFactoryMethod<IBus>(() => new BusBuilder()
.Configure()
.WithConnectionString(connectionString)
.WithNames("PingPong.Windsor", Environment.MachineName)
.WithTypesFrom(typeProvider)
.WithWindsorDefaults(container)
.Build())
.LifestyleSingleton()
.StartUsingMethod("Start")
);
This is the configuration call we've already seen with one difference. We've already registered our handlers with Windsor but we need to tell the container how to build the configure the bus. You can dig into the source if you want to see how it works, but the .WithWindsorDefaults call is what you'll need.
If you've used Windsor before you'll know you want to register the bus as an IBus so you can use it as a dependency in the rest of your code. We've configured it as LifestyleSingleton because we only want one instance of the bus in our app.
Once the Bus is registered we want to start it. To do that we call .StartUsingMethod() in Windsor to instantiate Nimbus by calling the "Start" method.
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