Muflone.Transport.RabbitMQ 6.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Muflone.Transport.RabbitMQ --version 6.0.1
NuGet\Install-Package Muflone.Transport.RabbitMQ -Version 6.0.1
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.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Muflone.Transport.RabbitMQ --version 6.0.1
#r "nuget: Muflone.Transport.RabbitMQ, 6.0.1"
#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 Muflone.Transport.RabbitMQ as a Cake Addin
#addin nuget:?package=Muflone.Transport.RabbitMQ&version=6.0.1

// Install Muflone.Transport.RabbitMQ as a Cake Tool
#tool nuget:?package=Muflone.Transport.RabbitMQ&version=6.0.1

Muflone Transport RabbitMQ

Muflone extension to manage queues, and topics on RabbitMQ.

Install

Install-Package Muflone.Transport.RabbitMQ

Sample

It's very simple to register RabbitMQ's transport

public IServiceCollection RegisterModule(WebApplicationBuilder builder) { var rabbitMQConfiguration = new RabbitMQConfiguration("localhost", "myuser", "mypassword", "Muflone"); var rabbitMQReference = new RabbitMQReference("MufloneCommands", "CreateOrder", "MufloneEvents", "OrderCreated"); var mufloneConnectionFactory = new MufloneConnectionFactory(rabbitMQConfiguration, new NullLoggerFactory());

builder.Services.AddScoped<ICommandHandlerAsync<CreateOrder>, CreateOrderCommandHandler>();
builder.Services.AddScoped<IDomainEventHandlerAsync<OrderCreated>, OrderCreatedEventHandler>();

var conumsers = new List<IConsumer>
{
    new CreateOrderConsumer(rabbitMQReference, mufloneConnectionFactory, new NullLoggerFactory()),
    new OrderCreatedConsumer(rabbitMQReference, mufloneConnectionFactory, new NullLoggerFactory())
};

builder.Services.AddMufloneTransportRabbitMQ(rabbitMQConfiguration, rabbitMQReference, conumsers);

return builder.Services;

}

Product 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. 
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 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
6.2.3 380 10/24/2023
6.2.2 168 7/10/2023
6.2.1 117 7/10/2023
6.2.0 241 6/3/2023
6.1.9 140 5/24/2023
6.1.8 137 5/24/2023
6.1.7 122 5/22/2023
6.1.6 123 5/20/2023
6.1.5 139 5/20/2023
6.1.4 118 5/15/2023
6.1.3 124 5/5/2023
6.1.2 168 4/20/2023
6.0.1 197 10/21/2022