OpenSleigh.Transport.AzureServiceBus 2.0.3

dotnet add package OpenSleigh.Transport.AzureServiceBus --version 2.0.3
NuGet\Install-Package OpenSleigh.Transport.AzureServiceBus -Version 2.0.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="OpenSleigh.Transport.AzureServiceBus" Version="2.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OpenSleigh.Transport.AzureServiceBus --version 2.0.3
#r "nuget: OpenSleigh.Transport.AzureServiceBus, 2.0.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.
// Install OpenSleigh.Transport.AzureServiceBus as a Cake Addin
#addin nuget:?package=OpenSleigh.Transport.AzureServiceBus&version=2.0.3

// Install OpenSleigh.Transport.AzureServiceBus as a Cake Tool
#tool nuget:?package=OpenSleigh.Transport.AzureServiceBus&version=2.0.3

OpenSleigh.Transport.AzureServiceBus

Nuget

Description

Azure Service Bus Transport library for OpenSleigh.

This library is making use of Topics, therefore, to work properly it requires at least Standard Tier. For more information on Azure Service Bus prices, check the <a href='https://azure.microsoft.com/en-ca/pricing/details/service-bus/' target='_blank'>official documentation</a>.

Installation

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

How-to

The first thing to do is build an instance of AzureServiceBusConfiguration 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 UseAzureServiceBusTransport extension method:

services.AddOpenSleigh(cfg =>{     
    var connStr = Configuration.GetConnectionString("AzureServiceBus");
    var config = new AzureServiceBusConfiguration(connStr);
    cfg.UseAzureServiceBusTransport(config);

    // register the Persistence and the Sagas
});

It is also possible to use a custom naming policy to define the names for topics and subscriptions. This opens the door to multiple, different scenarios (eg. a single topic with multiple subscriptions, one per message).

services.AddOpenSleigh(cfg =>{  
    // code omitted
    cfg.UseAzureServiceBusTransport(config, builder =>
    {                        
        builder.UseMessageNamingPolicy<StartParentSaga>(() =>
                        new QueueReferences("my-topic", "start-parent-saga"));
        builder.UseMessageNamingPolicy<ProcessParentSaga>(() =>
                        new QueueReferences("my-topic", "process-parent-saga"));
    })
});

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))
        .UseAzureServiceBusTransport();
});

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. 
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
2.0.3 1,329 8/30/2022
2.0.2 421 2/6/2022
2.0.1 417 1/13/2022
2.0.0 253 12/30/2021
1.3.1 1,138 8/27/2021
1.2.1 357 4/26/2021
1.2.0 373 3/30/2021
1.1.0 347 3/27/2021
1.0.2 395 3/24/2021
1.0.1 419 3/11/2021
1.0.0 357 2/15/2021
0.2.0 410 2/11/2021
0.1.0 381 2/9/2021