Rebus.Autofac 9.0.0

dotnet add package Rebus.Autofac --version 9.0.0
                    
NuGet\Install-Package Rebus.Autofac -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.Autofac" Version="9.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rebus.Autofac" Version="9.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Rebus.Autofac" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Rebus.Autofac --version 9.0.0
                    
#r "nuget: Rebus.Autofac, 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.
#:package Rebus.Autofac@9.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Rebus.Autofac&version=9.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Rebus.Autofac&version=9.0.0
                    
Install as a Cake Tool

Rebus.Autofac

install from nuget

Provides an Autofac container adapter for Rebus.

alternate text is missing from this package README image


Use the Autofac container adapter like this:

var builder = new ContainerBuilder();

builder.RegisterRebus((configurer, context) => configurer
    .Logging(l => l.Serilog())
    .Transport(t => t.UseRabbitMq(...))
    .Options(o => {
        o.SetNumberOfWorkers(2);
        o.SetMaxParallelism(30);
    }));

// the bus is registered now, but it has not been started.... make all your other registrations, and then:
var container = builder.Build(); //< start the bus


// now your application is running


// ALWAYS do this when your application shuts down:
container.Dispose();

It will automatically register the following services in Autofac:

  • IBus – this is the bus singleton
  • IBusStarter – this is the bus starter you can use to start it manually
  • IMessageContext – this is the current message context – can be injected into Rebus message handlers and everything resolved at the time of receiving a new message
  • ISyncBus – this is the synchronous bus instance – can be used in places, where a Task-based asynchronous API is not desired, e.g. from deep within ASP.NET or WPF applications, which would deadlock if you went .Wait() on a Task

Not that if you wish to regiser the bus and not start it automatically, you can stil register the number of workers but have it not start anything until you are ready for the bus to be started. This is usefu if you wish to separate the processing of messages from the sending of messages (separate tasks, services etc). You would do it like this:

var builder = new ContainerBuilder();

builder.RegisterRebus((configurer, context) => configurer
    .Logging(l => l.Serilog())
    .Transport(t => t.UseRabbitMq(...))
    .Options(o => {
        o.SetNumberOfWorkers(2);
        o.SetMaxParallelism(30);
    }),
    false); // <--- here we tell it not to start the bus

// the bus is registered now, but it has not been started.... make all your other registrations, and then:
var container = builder.Build();
var busStarter = container.Resolve<IBusStarter>();
busStarter.Start(); //< start the bus


// now your application is running


// ALWAYS do this when your application shuts down:
container.Dispose();
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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 (3)

Showing the top 3 NuGet packages that depend on Rebus.Autofac:

Package Downloads
Vedaantees.Framework.Providers

Providers implementation for the framework.

GAPD.Common.Event

Package Description

Imget.Shared

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
9.0.0 3,558,355 11/15/2023
9.0.0-alpha03 739 8/2/2023
9.0.0-alpha01 671 3/27/2023
8.0.0 670,414 2/3/2022
7.3.0 143,000 9/20/2021
7.2.0 66,435 2/25/2021
7.1.0 1,788 2/23/2021
7.0.0 186,523 1/31/2020
6.0.0 101,933 1/31/2020
6.0.0-b10 1,077 1/30/2020
6.0.0-b09 2,001 11/4/2019
6.0.0-b08 3,794 8/9/2019
6.0.0-b07 4,772 6/21/2019
6.0.0-b05 1,169 6/21/2019
6.0.0-b04 1,824 11/15/2018
6.0.0-b03 1,404 11/15/2018
6.0.0-b02 1,412 11/9/2018
6.0.0-b01 2,119 1/10/2018
5.2.0 4,400,800 11/14/2017
5.1.0 2,194 11/13/2017
5.0.0 2,436 11/3/2017
5.0.0-b01 1,646 10/30/2017
4.0.0 27,551 8/15/2017
4.0.0-b08 2,699 6/22/2017
4.0.0-b07 1,855 5/18/2017
4.0.0-b06 1,657 5/17/2017
4.0.0-b05 1,651 5/17/2017
4.0.0-b04 1,723 4/19/2017
4.0.0-b03 1,661 4/5/2017
4.0.0-b02 2,961 4/4/2017
4.0.0-b01 1,681 3/21/2017
3.0.0 44,379 1/5/2017
2.0.0 17,186 9/20/2016
2.0.0-b01 1,669 9/9/2016
2.0.0-a2 1,686 8/31/2016
2.0.0-a1 1,697 8/31/2016
0.99.74 3,446 8/29/2016
0.99.73 2,162 8/12/2016
0.99.72 2,112 8/4/2016
0.99.71 2,324 8/3/2016
0.99.70 2,174 7/29/2016
0.99.68 2,118 7/18/2016
0.99.67 2,155 7/1/2016
0.99.66 2,125 6/28/2016
0.99.65 2,066 6/23/2016
0.99.64 2,113 6/22/2016
0.99.63 2,042 6/21/2016
0.99.62 2,124 6/17/2016
0.99.61 2,029 6/17/2016
0.99.60 2,145 6/15/2016
0.99.59 2,290 6/3/2016
0.99.58 3,141 5/24/2016
0.99.57 2,088 5/22/2016
0.99.56 2,150 5/22/2016
0.99.55 2,277 5/16/2016
0.99.54 2,082 5/12/2016
0.99.53 2,013 5/12/2016
0.99.52 2,121 5/11/2016
0.99.51 2,098 5/9/2016
0.99.50 2,252 4/13/2016
0.99.48 2,181 4/6/2016
0.99.47 2,109 3/31/2016
0.99.46 2,066 3/30/2016
0.99.45 2,082 3/29/2016
0.99.44 1,968 3/26/2016
0.99.43 2,000 3/26/2016
0.99.42 2,233 3/22/2016
0.99.41 2,135 3/17/2016
0.99.40 2,085 3/15/2016
0.99.39 2,092 3/14/2016
0.99.38 2,055 3/9/2016
0.99.37 2,046 3/9/2016
0.99.36 2,104 3/3/2016
0.99.35 2,123 2/22/2016
0.99.34 2,127 2/19/2016
0.99.33 2,353 2/12/2016
0.99.32 2,097 2/10/2016
0.99.31 2,034 2/8/2016
0.99.30 2,515 2/5/2016
0.99.29 2,711 2/2/2016
0.99.27 2,054 1/28/2016
0.99.26 2,034 1/27/2016
0.99.25 2,126 1/22/2016
0.99.24 2,142 1/18/2016
0.99.23 2,217 12/18/2015
0.99.22 2,073 12/18/2015
0.99.21 2,396 12/11/2015
0.99.20 2,306 12/10/2015
0.99.19 2,105 12/8/2015
0.99.18 2,119 12/7/2015
0.99.17 2,053 12/7/2015
0.99.16 2,426 11/30/2015
0.99.14 2,228 11/24/2015
0.99.13 2,192 11/23/2015
0.99.12 2,288 11/17/2015
0.99.11 2,098 11/17/2015
0.99.10 2,304 11/11/2015
0.99.9 2,112 11/5/2015
0.99.8 2,154 11/5/2015
0.99.7 2,122 10/29/2015
0.99.5 2,383 10/27/2015
0.99.4 2,070 10/27/2015
0.99.2 2,240 10/12/2015
0.99.1 2,181 10/8/2015
0.99.0 2,376 10/7/2015
0.98.12 2,154 9/17/2015
0.98.11 2,190 9/17/2015
0.98.10 2,156 9/16/2015
0.98.9 2,122 9/14/2015
0.98.8 2,149 9/13/2015
0.98.7 2,188 9/9/2015
0.98.6 2,173 9/7/2015
0.98.5 2,094 9/3/2015
0.98.4 2,066 9/3/2015
0.98.3 2,141 9/1/2015
0.98.2 2,112 8/27/2015
0.98.1 2,114 8/27/2015
0.98.0 2,119 8/26/2015
0.97.0 2,073 8/25/2015
0.96.0 2,083 8/24/2015
0.95.0 2,117 8/20/2015
0.94.0 2,118 8/19/2015
0.93.0 2,117 8/19/2015
0.92.4 2,137 8/17/2015
0.92.3 2,437 8/13/2015
0.92.2 2,600 8/12/2015
0.92.1 2,275 8/12/2015
0.92.0 2,338 8/11/2015
0.91.0 2,069 8/11/2015
0.90.9 2,102 8/10/2015
0.90.8 2,435 8/9/2015
0.90.7 2,340 8/5/2015
0.90.6 2,328 8/4/2015
0.90.5 2,323 8/4/2015
0.90.4 2,299 8/2/2015
0.90.3 2,302 8/2/2015
0.90.2 2,244 7/31/2015
0.90.1 2,277 7/29/2015
0.90.0 2,261 7/29/2015
0.84.0 2,784 5/15/2015
0.83.0 2,352 4/20/2015
0.82.1 2,199 4/16/2015
0.82.0 2,226 3/18/2015
0.81.0 2,082 3/12/2015
0.80.1 2,321 3/5/2015
0.80.0 2,817 2/19/2015
0.79.0 2,104 2/6/2015
0.78.2 2,050 2/6/2015
0.78.1 2,082 2/5/2015
0.78.0 2,209 1/29/2015
0.77.1 2,135 1/23/2015
0.77.0 2,125 1/15/2015
0.76.0 2,104 1/15/2015
0.75.2 2,448 1/3/2015
0.75.1 2,522 12/21/2014
0.75.0 2,265 12/2/2014
0.74.1 2,278 12/2/2014
0.74.0 2,248 11/30/2014
0.73.0 3,412 11/6/2014
0.72.0 2,468 11/5/2014
0.71.4 2,308 10/29/2014
0.71.3 2,205 10/20/2014
0.71.2 2,111 9/30/2014
0.71.1 2,269 9/19/2014
0.71.0 2,245 8/7/2014
0.70.3 2,100 8/4/2014
0.70.2 2,558 7/31/2014
0.70.1 2,158 7/17/2014
0.69.0 2,390 6/17/2014
0.68.0 2,212 6/5/2014
0.67.0 2,223 5/20/2014
0.66.0 2,265 5/9/2014
0.65.0 2,396 4/27/2014
0.64.1 2,249 4/25/2014
0.64.0 2,372 4/20/2014
0.63.1 2,224 4/19/2014
0.63.0 2,200 3/24/2014
0.62.0 2,288 3/12/2014
0.61.1 2,230 3/5/2014
0.61.0 2,197 3/4/2014
0.60.1 2,179 3/3/2014
0.60.0 2,196 3/3/2014
0.59.0 2,300 2/26/2014
0.58.2 2,248 2/24/2014
0.58.1 2,209 2/24/2014
0.58.0 2,199 2/24/2014
0.57.0 2,202 2/18/2014
0.56.1 2,253 2/4/2014
0.56.0 2,205 1/24/2014
0.55.1 2,194 1/20/2014
0.55.0 2,265 1/20/2014
0.54.8 2,176 1/20/2014
0.54.7 2,210 1/20/2014
0.54.6 2,197 1/20/2014
0.54.5 2,205 1/20/2014
0.54.4 2,268 1/11/2014
0.54.3 2,182 1/8/2014
0.54.1 2,220 12/16/2013
0.54.0 2,201 12/10/2013
0.53.1 2,218 12/9/2013
0.53.0 2,187 12/5/2013
0.52.0 2,161 12/4/2013
0.51.1 2,200 12/3/2013
0.51.0 2,261 12/3/2013
0.50.1 2,251 11/15/2013
0.50.0 2,221 11/15/2013
0.49.0 2,258 11/15/2013
0.48.0 2,190 11/12/2013
0.47.0 2,195 11/6/2013
0.46.0 2,221 10/29/2013
0.45.0 2,168 10/21/2013
0.44.5 2,214 10/11/2013
0.44.4 2,205 10/7/2013
0.44.3 2,183 10/4/2013
0.44.2 2,203 10/4/2013
0.44.1 2,245 10/2/2013
0.44.0 2,220 10/2/2013
0.43.1 2,211 9/24/2013
0.43.0 2,202 9/17/2013
0.42.0 2,207 9/17/2013
0.41.0 2,291 9/10/2013
0.40.1 2,266 9/9/2013
0.40.0 2,239 9/2/2013
0.39.0 2,261 8/29/2013
0.38.1 2,201 8/28/2013
0.38.0 2,201 8/28/2013
0.37.0 2,195 8/26/2013
0.36.1 2,249 8/25/2013
0.36.0 2,308 8/25/2013
0.35.6 2,224 8/20/2013
0.35.5 2,223 8/20/2013
0.35.4 2,299 8/19/2013
0.35.3 2,242 8/17/2013
0.35.2 2,299 8/15/2013
0.35.1 2,233 8/14/2013
0.35.0 2,222 8/6/2013
0.34.7 2,142 8/5/2013
0.34.6 2,268 8/5/2013
0.34.5 2,209 8/2/2013
0.34.3 2,207 7/29/2013
0.34.2 2,170 7/29/2013
0.34.1 2,279 7/27/2013
0.34.0 2,476 7/4/2013
0.33.0 2,388 6/14/2013
0.32.4 2,232 5/28/2013
0.32.3 2,217 5/23/2013
0.32.1 2,261 5/15/2013
0.32.0 2,299 4/23/2013
0.31.1 2,259 4/2/2013
0.31.0 2,218 4/2/2013
0.30.7 2,258 3/25/2013
0.30.4 2,300 3/7/2013
0.30.3 2,208 3/7/2013
0.30.2 2,278 3/7/2013
0.30.1 2,262 3/6/2013
0.30.0 2,325 3/5/2013
0.29.9 2,279 3/5/2013
0.29.8 2,316 3/5/2013
0.29.7 2,266 2/28/2013
0.29.6 2,278 2/20/2013
0.29.5 2,273 2/20/2013
0.29.4 2,235 2/8/2013
0.29.3 2,233 2/6/2013
0.29.1 2,229 2/5/2013
0.29.0-alpha 1,711 1/22/2013
0.28.4 2,286 1/21/2013
0.28.3 2,317 1/8/2013
0.28.2 2,232 1/8/2013
0.28.1 2,270 12/27/2012
0.28.0 2,286 12/27/2012
0.27.1 2,305 12/4/2012
0.27.0 2,341 12/4/2012
0.26.1 2,462 12/4/2012
0.26.0 2,439 11/20/2012
0.25.9 2,550 11/20/2012
0.25.8 2,488 11/19/2012
0.25.7 2,525 11/18/2012
0.25.5 2,466 11/15/2012
0.25.3 2,482 11/13/2012
0.25.2 2,490 11/13/2012
0.25.1 2,474 11/13/2012
0.25.0 2,486 11/7/2012
0.24.9 2,409 11/7/2012
0.24.8 2,414 11/7/2012
0.24.7 2,423 11/6/2012
0.24.6 2,439 11/1/2012
0.24.5 2,459 10/30/2012
0.24.4 2,439 10/30/2012
0.24.3 2,434 10/26/2012
0.24.2 2,366 10/26/2012
0.24.1 2,392 10/26/2012
0.24.0 2,419 10/25/2012
0.23.9 2,421 10/25/2012
0.23.8 2,390 10/25/2012
0.23.7 2,386 10/25/2012
0.23.6 2,420 10/24/2012
0.23.1 2,344 10/12/2012
0.23.0 2,440 10/10/2012
0.22.8 2,349 10/10/2012
0.22.7 2,365 10/9/2012
0.22.6 2,422 10/9/2012
0.22.5 2,363 10/3/2012
0.22.4 2,299 10/2/2012
0.22.3 2,270 10/2/2012
0.22.2 2,319 9/30/2012
0.22.1 2,346 9/26/2012
0.22.0 2,368 9/26/2012
0.21.7 2,383 9/25/2012
0.21.6 2,336 9/25/2012
0.21.5 2,397 9/11/2012
0.21.4 2,388 9/10/2012
0.21.3 2,366 9/10/2012
0.21.2 2,296 9/10/2012
0.21.1 2,317 9/10/2012
0.21.0 2,271 9/7/2012
0.20.9 2,278 9/7/2012
0.20.8 2,365 9/6/2012
0.20.7 2,334 9/6/2012
0.20.6 2,371 9/6/2012
0.20.3 2,359 9/4/2012
0.20.2 2,301 9/4/2012
0.19.7 2,441 8/29/2012
0.19.6 2,354 8/28/2012
0.19.5 2,380 8/28/2012
0.19.4 2,280 8/28/2012
0.19.3 2,254 8/28/2012
0.19.2 2,327 8/28/2012
0.19.1 2,317 8/26/2012
0.18.6 2,307 8/23/2012
0.16.0 2,343 8/20/2012
0.15.9-alpha 1,862 8/14/2012
0.15.8-alpha 1,824 8/8/2012
0.15.7-alpha 1,820 8/8/2012
0.15.6-alpha 1,780 8/8/2012
0.15.5-alpha 1,868 8/8/2012
0.15.4-alpha 1,818 8/7/2012
0.15.3-alpha 1,805 8/7/2012
0.15.2-alpha 1,852 8/7/2012
0.15.1-alpha 1,831 8/2/2012
0.15.0-alpha 1,859 8/1/2012
0.14.0-alpha 1,836 7/30/2012
0.13.0-alpha 1,821 7/14/2012
0.12.9-alpha 1,942 6/18/2012
0.12.8-alpha 1,805 6/18/2012
0.12.7-alpha 1,806 6/13/2012
0.12.6-alpha 1,808 6/8/2012
0.12.5-alpha 1,841 6/5/2012
0.12.4-alpha 1,804 6/5/2012
0.12.3-alpha 1,789 6/1/2012
0.12.2-alpha 1,825 5/31/2012
0.12.1-alpha 1,826 5/30/2012
0.11.10-alpha 1,852 5/30/2012
0.11.9-alpha 1,766 5/30/2012
0.11.8-alpha 1,777 5/30/2012
0.11.7-alpha 1,860 5/30/2012
0.11.6-alpha 1,800 5/29/2012
0.11.5-alpha 1,822 5/22/2012
0.11.4-alpha 1,826 5/22/2012