Bsa.Msa.DependencyInjection
9.0.46
See the version list below for details.
dotnet add package Bsa.Msa.DependencyInjection --version 9.0.46
NuGet\Install-Package Bsa.Msa.DependencyInjection -Version 9.0.46
<PackageReference Include="Bsa.Msa.DependencyInjection" Version="9.0.46" />
<PackageVersion Include="Bsa.Msa.DependencyInjection" Version="9.0.46" />
<PackageReference Include="Bsa.Msa.DependencyInjection" />
paket add Bsa.Msa.DependencyInjection --version 9.0.46
#r "nuget: Bsa.Msa.DependencyInjection, 9.0.46"
#:package Bsa.Msa.DependencyInjection@9.0.46
#addin nuget:?package=Bsa.Msa.DependencyInjection&version=9.0.46
#tool nuget:?package=Bsa.Msa.DependencyInjection&version=9.0.46
integrating Autofac with MSA Bsa.Msa.RabbitMq.Core
http://bsasearch.org/msa.html
Product | Versions 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. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net9.0
- Bsa.Msa.RabbitMq.Core (>= 9.0.46)
- Microsoft.Extensions.Hosting (>= 9.0.8)
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.47 | 29 | 9/9/2025 | |
9.0.46 | 56 | 9/8/2025 | |
9.0.45 | 84 | 9/5/2025 | |
9.0.44 | 115 | 7/18/2025 | |
9.0.42 | 141 | 7/7/2025 | |
9.0.41 | 154 | 6/16/2025 | |
9.0.40 | 203 | 4/15/2025 | |
9.0.38 | 222 | 3/5/2025 | |
9.0.35 | 231 | 3/3/2025 | |
9.0.34 | 112 | 3/2/2025 | |
9.0.33 | 115 | 3/1/2025 | |
9.0.32 | 123 | 2/15/2025 | |
9.0.31 | 127 | 2/12/2025 | |
8.0.47 | 21 | 9/9/2025 | |
8.0.45 | 77 | 9/5/2025 | |
8.0.44 | 100 | 7/18/2025 | |
8.0.42 | 140 | 7/7/2025 | |
8.0.40 | 191 | 4/15/2025 | |
8.0.38 | 221 | 3/5/2025 | |
8.0.35 | 225 | 3/3/2025 | |
8.0.32 | 113 | 2/15/2025 | |
8.0.31 | 119 | 2/12/2025 | |
7.0.47 | 22 | 9/9/2025 | |
7.0.45 | 77 | 9/5/2025 | |
7.0.44 | 103 | 7/18/2025 | |
7.0.42 | 143 | 7/7/2025 | |
7.0.40 | 193 | 4/15/2025 | |
7.0.38 | 213 | 3/5/2025 | |
7.0.35 | 218 | 3/3/2025 | |
7.0.32 | 114 | 2/15/2025 | |
7.0.31 | 114 | 2/12/2025 | |
6.0.47 | 32 | 9/9/2025 | |
6.0.46 | 52 | 9/8/2025 | |
6.0.45 | 83 | 9/5/2025 | |
6.0.44 | 99 | 7/18/2025 | |
6.0.42 | 140 | 7/7/2025 | |
6.0.41 | 147 | 6/16/2025 | |
6.0.40 | 188 | 4/15/2025 | |
6.0.38 | 245 | 3/4/2025 | |
6.0.35 | 219 | 3/3/2025 | |
6.0.34 | 180 | 3/2/2025 | |
6.0.33 | 112 | 3/1/2025 | |
6.0.32 | 125 | 2/13/2025 | |
6.0.31 | 113 | 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);
}
}