Bsa.Msa.DependencyInjection 9.0.38

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

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

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.38 196 12 days ago
9.0.35 201 13 days ago
9.0.34 80 15 days ago
9.0.33 83 15 days ago
9.0.32 93 a month ago
9.0.31 97 a month ago
8.0.38 189 12 days ago
8.0.35 195 13 days ago
8.0.32 84 a month ago
8.0.31 96 a month ago
7.0.38 185 12 days ago
7.0.35 190 13 days ago
7.0.32 85 a month ago
7.0.31 88 a month ago
6.0.38 196 12 days ago
6.0.35 194 13 days ago
6.0.34 154 15 days ago
6.0.33 89 15 days ago
6.0.32 100 a month ago
6.0.31 90 a month ago

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);

    }
}