OpenSleigh.Transport.RabbitMQ 2.0.2

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

OpenSleigh.Transport.RabbitMQ

Nuget

Description

RabbitMQ Transport library for OpenSleigh

Installation

This library can be installed from Nuget: https://www.nuget.org/packages/OpenSleigh.Transport.RabbitMQ/

How-to

The first thing to do is build an instance of RabbitConfiguration with the connection details. This can be done by reading the current app configuration. Once done, all you have to do is to call the UseRabbitMQTransport extension method:

services.AddOpenSleigh(cfg =>{     
    var rabbitSection = Configuration.GetSection("Rabbit");
    var rabbitCfg = new RabbitConfiguration(rabbitSection["HostName"],
        rabbitSection["UserName"],
        rabbitSection["Password"]);

        cfg.UseRabbitMQTransport(rabbitCfg);

    // register the Persistence and the Sagas
});

It is also possible to use a custom naming policy to define the names for exchanges and queues. This allows us to have a single exchange bound to multiple queues. Messages will be routed using the queue name.

services.AddOpenSleigh(cfg =>{  
    // code omitted
    cfg.UseRabbitMQTransport(rabbitCfg, builder =>
    {                        
        builder.UseMessageNamingPolicy<StartChildSaga>(() => new QueueReferences("child", "child.start", "child.dead", "child.dead.start"));
        builder.UseMessageNamingPolicy<ProcessChildSaga>(() => new QueueReferences("child", "child.process", "child.dead", "child.dead.process"));
    })
});

If your application has to handle messages and events, not just dispatch them, you also have to configure each Saga :

services.AddOpenSleigh(cfg =>{  
    // code omitted //

    cfg.AddSaga<MySaga, MySagaState>()
        .UseStateFactory<StartSaga>(msg => new MySagaState(msg.CorrelationId))
        .UseRabbitMQTransport();
});

Do you like this project? Then consider giving a donation! Donate

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.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.0-alpha 288 4/22/2023
2.0.2 13,454 8/30/2022
2.0.1 474 1/3/2022
2.0.0 422 12/30/2021
1.4.4 516 11/14/2021
1.4.3 440 11/12/2021
1.4.2 533 11/8/2021
1.4.1 484 11/5/2021
1.4.0 878 8/27/2021
1.3.0 515 4/29/2021
1.2.1 486 4/26/2021
1.2.0 453 3/30/2021
1.1.0 505 3/27/2021
1.0.2 516 3/24/2021
1.0.1 589 3/11/2021
1.0.0 594 2/15/2021
0.9.2 563 2/9/2021
0.9.1 614 1/31/2021
0.9.0 512 1/27/2021
0.8.0 554 1/19/2021
0.7.0 498 1/14/2021
0.6.0 545 1/11/2021
0.5.1 539 1/8/2021
0.5.0 534 1/8/2021
0.4.0 538 1/7/2021
0.3.0 509 1/5/2021
0.2.0 581 1/3/2021
0.1.0 539 12/31/2020
0.0.1 509 12/31/2020