Muflone.Transport.RabbitMQ
6.2.3
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Muflone.Transport.RabbitMQ --version 6.2.3
NuGet\Install-Package Muflone.Transport.RabbitMQ -Version 6.2.3
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="Muflone.Transport.RabbitMQ" Version="6.2.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Muflone.Transport.RabbitMQ" Version="6.2.3" />
<PackageReference Include="Muflone.Transport.RabbitMQ" />
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 Muflone.Transport.RabbitMQ --version 6.2.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Muflone.Transport.RabbitMQ, 6.2.3"
#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 Muflone.Transport.RabbitMQ@6.2.3
#: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=Muflone.Transport.RabbitMQ&version=6.2.3
#tool nuget:?package=Muflone.Transport.RabbitMQ&version=6.2.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Muflone Transport RabbitMQ
Muflone extension to manage queues, and topics on RabbitMQ.
Install
Install-Package Muflone.Transport.RabbitMQ
Implementation
It's very simple to register RabbitMQ's transport
public IServiceCollection RegisterModule(WebApplicationBuilder builder)
{
var rabbitMQConfiguration = new RabbitMQConfiguration("localhost", "myuser", "mypassword", "ExchangeCommandsName", "ExchangeForEventsName");
var connectionFactory = new MufloneConnectionFactory(rabbitMQConfiguration, MyLoggerFactory);
builder.Services.AddScoped<ICommandHandlerAsync<CreateOrder>, CreateOrderCommandHandler>();
builder.Services.AddScoped<IDomainEventHandlerAsync<OrderCreated>, OrderCreatedEventHandler>();
builder.Services.AddMufloneTransportRabbitMQ(loggerFactory, rabbitMQConfiguration);
//We need to call a build if we need the service bus or other things registered in Muflone.RabbitMQ
serviceProvider = builder.Services.BuildServiceProvider();
builder.Services.AddMufloneRabbitMQConsumers(new List<IConsumer>
{
new BeersReceivedConsumer(serviceProvider.GetRequiredService<IServiceBus>(), connectionFactory, MyLoggerFactory),
new CreateOrderConsumer(connectionFactory, MyLoggerFactory),
new OrderCreatedConsumer(connectionFactory, MyLoggerFactory)
};
return builder.Services;
}
Fully working example
You can find a fully working example here: https://github.com/BrewUp/
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Microsoft.Extensions.DependencyInjection (>= 7.0.0)
- Microsoft.Extensions.Hosting (>= 7.0.1)
- Microsoft.Extensions.Logging (>= 7.0.0)
- Muflone (>= 6.2.0)
- Polly (>= 7.2.3)
- RabbitMQ.Client (>= 6.5.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Muflone.Transport.RabbitMQ:
| Package | Downloads |
|---|---|
|
Muflone.Transport.RabbitMQ.Saga
Muflone saga implementation for RabbitMQ |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 10.1.0 | 88 | 3/1/2026 | |
| 10.1.0-rc2 | 89 | 2/12/2026 | |
| 10.1.0-rc1 | 85 | 2/12/2026 | |
| 10.0.2 | 214 | 2/11/2026 | |
| 10.0.1 | 329 | 12/18/2025 | |
| 8.5.0 | 771 | 10/2/2025 | |
| 8.5.0-beta.1 | 299 | 9/4/2025 | |
| 8.4.0 | 1,308 | 5/20/2025 | |
| 8.3.2-alpha | 242 | 5/16/2025 | |
| 8.3.1-alpha | 194 | 5/8/2025 | |
| 8.2.1 | 567 | 4/8/2025 | |
| 8.2.0 | 1,497 | 12/4/2024 | |
| 8.1.1 | 1,066 | 9/9/2024 | |
| 8.0.3 | 290 | 8/2/2024 | |
| 8.0.2 | 196 | 8/1/2024 | |
| 8.0.1 | 178 | 8/1/2024 | |
| 8.0.0 | 183 | 8/1/2024 | |
| 6.2.3 | 503 | 10/24/2023 | |
| 6.2.2 | 274 | 7/10/2023 |
Loading failed