Bsa.Msa.SC 9.0.30

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

// Install Bsa.Msa.SC as a Cake Tool
#tool nuget:?package=Bsa.Msa.SC&version=9.0.30                

integrating Autofac with MSA Bsa.Msa.RabbitMq.Core
http://bsasearch.org/msa.html

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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
9.0.31 37 2/12/2025
9.0.30 38 2/12/2025
9.0.29 33 2/12/2025
9.0.25 39 2/12/2025
9.0.21 32 2/12/2025
9.0.20 43 2/12/2025
8.0.31 30 2/12/2025
8.0.30 34 2/12/2025
8.0.29 37 2/12/2025
8.0.25 34 2/12/2025
8.0.21 34 2/12/2025
8.0.20 31 2/12/2025
7.0.31 36 2/12/2025
7.0.30 33 2/12/2025
7.0.29 36 2/12/2025
7.0.25 32 2/12/2025
7.0.21 33 2/12/2025
7.0.20 33 2/12/2025
6.0.31 33 2/12/2025
6.0.30 42 2/12/2025
6.0.29 34 2/12/2025
6.0.28 30 2/12/2025
6.0.26 32 2/12/2025
6.0.25 37 2/12/2025
6.0.24 33 2/12/2025
6.0.22 37 2/12/2025
6.0.21 34 2/12/2025
6.0.20 36 2/12/2025

Added async message handler
public sealed class EmptyMessageHandlerAsync : IMessageHandlerAsync<EmptyMessage>
{
    private readonly IBusManager _busManager;
    private readonly ISettings _settings;

    public EmptyMessageHandlerAsync(IBusManager busManager, ISettings settings)
    {
        this._busManager = busManager;
        this._settings = settings;
    }
    public async Task HandleAsync(EmptyMessage message)
    {
        Console.Write($"Processed: {JsonConvert.SerializeObject(message)}");
        await Task.Delay(1000);

    }
}