Rebus.SimpleInjector 9.0.0

dotnet add package Rebus.SimpleInjector --version 9.0.0
NuGet\Install-Package Rebus.SimpleInjector -Version 9.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Rebus.SimpleInjector" Version="9.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Rebus.SimpleInjector --version 9.0.0
#r "nuget: Rebus.SimpleInjector, 9.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Rebus.SimpleInjector as a Cake Addin
#addin nuget:?package=Rebus.SimpleInjector&version=9.0.0

// Install Rebus.SimpleInjector as a Cake Tool
#tool nuget:?package=Rebus.SimpleInjector&version=9.0.0

Rebus.SimpleInjector

install from nuget

Provides a SimpleInjector-based container adapter for Rebus.

alternate text is missing from this package README image


To configure Rebus to work with your SimpleInjector container, simply call

container.RegisterRebus(
    configurer => configurer
        .(...)
);

where the (...) is the part usually omitted from the Rebus configuration examples.

A slightly more realistic example (using Serilog, RabbitMQ and SQL Server) could look like this:

var rabbitMqConnectionString = "amqp://rebususer:blablasecret@BIGRABBIT01.local";
var sqlServerConnectionString = "server=SQLMOTEL01.local; database=RebusStuff; trusted_connection=true";

container.RegisterRebus(
	configurer => configurer
		.Logging(l => l.Serilog())
		.Transport(t => t.UseRabbitMq(rabbitMqConnectionString, "simpleinjectortest"))
		.Sagas(s => s.StoreInSqlServer(sqlServerConnectionString, "Sagas", "SagaIndex"))
);

The examples shown so far will make the necessary container registrations, but the bus will not be started until either

  1. The container resolves the IBus instance, or
  2. You call the container.StartBus() extension method

so you should probably always remember to call container.StartBus() when your application starts (after it has finished making ALL of its container registrations).

If you would like to be able to resolve IBus WITHOUT starting consuming messages, you can set startAutomatically to false when configuring it like so:

container.RegisterRebus(
	configurer => configurer
		.Transport(...),

	startAutomatically: false
);

which will configure the bus to have 0 workers when it's resolved from the container. You must then call

container.StartBus();

to start it.

So why is it different from all the other container adapters?

Because SimpleInjector is very opinionated about its registration API and Rebus is pretty loose about it 😃

How to register handlers?

Since Rebus' container adapters resolve ALL handlers that can handle an incoming message, handlers must be registered with the registration API for collections, e.g. like

container.Collection.Register<IHandleMessages<SomeMessage>>(typeof(SomeMessageHandler));

Due to limitations in SimpleInjector, you must be sure that all handlers for a given message type get registered with a single registration call similar to the one above.

There also exists a couple of extension methods that help you register handlers (up to three per message type) just the right way:

// one message handler
container.RegisterHandlers<SomeMessage, SomeMessageHandler>();

// two handlers of SomeMessage
container.RegisterHandlers<SomeMessage, SomeMessageHandler, AnotherMessageHandler>();

// three handlers of SomeMessage
container.RegisterHandlers<SomeMessage, SomeMessageHandler, AnotherMessageHandler, YetAnotherMessageHandler>();

The advantage of using Rebus' configuration extension is that it's easier to get right, because the extension will register it the right way in the container, and the API uses C# generics constraints to validate that the given handler types do in fact implement IHandleMessages<> closed with the right type.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Rebus.SimpleInjector:

Package Downloads
RAES.Core

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Rebus.SimpleInjector:

Repository Stars
rebus-org/RebusSamples
Small sample projects
Version Downloads Last updated
9.0.0 2,308 11/15/2023
9.0.0-alpha01 111 3/29/2023
8.0.1 6,843 1/11/2023
8.0.0 9,165 2/3/2022
7.0.0 26,050 7/27/2020
6.0.0 5,810 3/15/2020
5.0.0-b02 5,124 4/19/2018
5.0.0-b01 10,001 8/28/2017
4.0.0 33,613 8/15/2017
4.0.0-b05 803 6/22/2017
4.0.0-b04 811 5/31/2017
4.0.0-b03 773 5/18/2017
4.0.0-b01 759 5/1/2017
3.0.0 23,704 1/5/2017
2.0.0 3,385 9/20/2016
2.0.0-b01 769 9/9/2016
0.99.74 979 8/29/2016
0.99.73 1,092 8/12/2016
0.99.72 1,009 8/4/2016
0.99.71 1,241 8/3/2016
0.99.70 1,163 7/29/2016
0.99.68 1,045 7/18/2016
0.99.67 1,020 7/1/2016
0.99.66 1,014 6/28/2016
0.99.65 1,022 6/23/2016
0.99.64 984 6/22/2016
0.99.63 988 6/21/2016
0.99.62 1,255 6/17/2016
0.99.61 996 6/17/2016
0.99.60 1,131 6/15/2016
0.99.59 995 6/3/2016
0.99.58 993 5/24/2016
0.99.57 1,011 5/22/2016
0.99.56 1,019 5/22/2016
0.99.55 980 5/16/2016
0.99.54 983 5/12/2016
0.99.53 992 5/12/2016
0.99.52 1,015 5/11/2016
0.99.51 980 5/9/2016
0.99.50 1,109 4/13/2016
0.99.48 1,030 4/6/2016
0.99.47 1,055 3/31/2016
0.99.46 1,033 3/30/2016
0.99.45 1,019 3/29/2016
0.99.44 1,038 3/26/2016
0.99.43 1,013 3/26/2016
0.99.42 1,016 3/22/2016
0.99.41 1,007 3/17/2016
0.99.40 1,027 3/15/2016
0.99.39 1,010 3/14/2016
0.99.38 994 3/9/2016
0.99.37 990 3/9/2016
0.99.36 1,024 3/3/2016
0.99.35 1,027 2/22/2016
0.99.34 1,029 2/19/2016
0.99.33 1,192 2/12/2016
0.99.32 1,014 2/10/2016
0.99.31 1,026 2/8/2016
0.99.30 1,006 2/5/2016
0.99.29 1,003 2/2/2016
0.99.27 1,025 1/28/2016
0.99.26 1,003 1/27/2016
0.99.25 1,007 1/22/2016
0.99.24 1,055 1/18/2016
0.99.23 1,079 12/18/2015
0.99.22 1,012 12/18/2015
0.99.21 1,012 12/11/2015
0.99.20 1,095 12/10/2015
0.99.19 1,027 12/8/2015
0.99.18 1,087 12/7/2015
0.99.17 1,027 12/7/2015
0.99.16 1,353 11/30/2015
0.99.14 1,111 11/24/2015
0.99.13 1,161 11/23/2015
0.99.12 1,159 11/17/2015
0.99.11 1,076 11/17/2015
0.99.10 1,081 11/11/2015
0.99.9 1,054 11/5/2015
0.99.8 1,051 11/5/2015
0.99.7 1,066 10/29/2015
0.99.5 1,024 10/27/2015
0.99.4 1,009 10/27/2015
0.99.2 1,083 10/12/2015
0.99.1 1,143 10/8/2015
0.99.0 1,172 10/7/2015
0.98.12 1,132 9/17/2015
0.98.11 1,085 9/17/2015
0.98.10 1,058 9/16/2015
0.98.9 1,086 9/14/2015
0.98.8 1,083 9/13/2015
0.98.7 1,046 9/9/2015
0.98.6 1,082 9/7/2015
0.98.5 1,049 9/3/2015
0.98.4 1,097 9/3/2015
0.98.3 1,067 9/1/2015
0.98.2 1,083 8/27/2015
0.98.0 1,043 8/26/2015
0.97.0 1,091 8/25/2015
0.96.0 1,038 8/24/2015
0.95.0 1,054 8/20/2015
0.94.0 1,033 8/19/2015
0.93.0 1,081 8/19/2015
0.92.4 1,055 8/17/2015
0.92.3 1,305 8/13/2015
0.92.2 1,897 8/12/2015
0.92.1 1,761 8/12/2015
0.92.0 1,183 8/11/2015
0.91.0 1,478 8/11/2015
0.90.9 1,554 8/10/2015
0.90.8 1,385 8/9/2015
0.90.7 1,381 8/5/2015
0.90.6 1,333 8/4/2015
0.90.5 1,249 8/4/2015
0.90.4 1,213 8/2/2015
0.90.3 1,216 8/2/2015
0.90.2 1,193 7/31/2015
0.90.1 1,170 7/29/2015
0.90.0 1,162 7/29/2015