OpenSleigh.Transport.RabbitMQ
2.0.2
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
<PackageReference Include="OpenSleigh.Transport.RabbitMQ" Version="2.0.2" />
paket add OpenSleigh.Transport.RabbitMQ --version 2.0.2
#r "nuget: OpenSleigh.Transport.RabbitMQ, 2.0.2"
// Install OpenSleigh.Transport.RabbitMQ as a Cake Addin #addin nuget:?package=OpenSleigh.Transport.RabbitMQ&version=2.0.2 // Install OpenSleigh.Transport.RabbitMQ as a Cake Tool #tool nuget:?package=OpenSleigh.Transport.RabbitMQ&version=2.0.2
OpenSleigh.Transport.RabbitMQ
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();
});
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. |
-
net6.0
- OpenSleigh.Abstractions (>= 1.0.0)
- Polly (>= 7.2.3)
- RabbitMQ.Client (>= 6.4.0)
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 | 275 | 4/22/2023 |
2.0.2 | 13,174 | 8/30/2022 |
2.0.1 | 449 | 1/3/2022 |
2.0.0 | 398 | 12/30/2021 |
1.4.4 | 492 | 11/14/2021 |
1.4.3 | 416 | 11/12/2021 |
1.4.2 | 509 | 11/8/2021 |
1.4.1 | 460 | 11/5/2021 |
1.4.0 | 833 | 8/27/2021 |
1.3.0 | 489 | 4/29/2021 |
1.2.1 | 460 | 4/26/2021 |
1.2.0 | 425 | 3/30/2021 |
1.1.0 | 477 | 3/27/2021 |
1.0.2 | 490 | 3/24/2021 |
1.0.1 | 563 | 3/11/2021 |
1.0.0 | 566 | 2/15/2021 |
0.9.2 | 536 | 2/9/2021 |
0.9.1 | 585 | 1/31/2021 |
0.9.0 | 484 | 1/27/2021 |
0.8.0 | 526 | 1/19/2021 |
0.7.0 | 470 | 1/14/2021 |
0.6.0 | 517 | 1/11/2021 |
0.5.1 | 511 | 1/8/2021 |
0.5.0 | 505 | 1/8/2021 |
0.4.0 | 510 | 1/7/2021 |
0.3.0 | 482 | 1/5/2021 |
0.2.0 | 554 | 1/3/2021 |
0.1.0 | 512 | 12/31/2020 |
0.0.1 | 481 | 12/31/2020 |