Bsa.Msa.DependencyInjection
9.0.47
dotnet add package Bsa.Msa.DependencyInjection --version 9.0.47
NuGet\Install-Package Bsa.Msa.DependencyInjection -Version 9.0.47
<PackageReference Include="Bsa.Msa.DependencyInjection" Version="9.0.47" />
<PackageVersion Include="Bsa.Msa.DependencyInjection" Version="9.0.47" />
<PackageReference Include="Bsa.Msa.DependencyInjection" />
paket add Bsa.Msa.DependencyInjection --version 9.0.47
#r "nuget: Bsa.Msa.DependencyInjection, 9.0.47"
#:package Bsa.Msa.DependencyInjection@9.0.47
#addin nuget:?package=Bsa.Msa.DependencyInjection&version=9.0.47
#tool nuget:?package=Bsa.Msa.DependencyInjection&version=9.0.47
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.47)
- 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 | 146 | 9/9/2025 | |
9.0.46 | 226 | 9/8/2025 | |
9.0.45 | 194 | 9/5/2025 | |
9.0.44 | 128 | 7/18/2025 | |
9.0.42 | 154 | 7/7/2025 | |
9.0.41 | 162 | 6/16/2025 | |
9.0.40 | 216 | 4/15/2025 | |
9.0.38 | 224 | 3/5/2025 | |
9.0.35 | 243 | 3/3/2025 | |
9.0.34 | 123 | 3/2/2025 | |
9.0.33 | 126 | 3/1/2025 | |
9.0.32 | 134 | 2/15/2025 | |
9.0.31 | 138 | 2/12/2025 | |
8.0.47 | 148 | 9/9/2025 | |
8.0.45 | 183 | 9/5/2025 | |
8.0.44 | 103 | 7/18/2025 | |
8.0.42 | 143 | 7/7/2025 | |
8.0.40 | 193 | 4/15/2025 | |
8.0.38 | 225 | 3/5/2025 | |
8.0.35 | 237 | 3/3/2025 | |
8.0.32 | 116 | 2/15/2025 | |
8.0.31 | 130 | 2/12/2025 | |
7.0.47 | 137 | 9/9/2025 | |
7.0.45 | 183 | 9/5/2025 | |
7.0.44 | 106 | 7/18/2025 | |
7.0.42 | 146 | 7/7/2025 | |
7.0.40 | 206 | 4/15/2025 | |
7.0.38 | 215 | 3/5/2025 | |
7.0.35 | 229 | 3/3/2025 | |
7.0.32 | 131 | 2/15/2025 | |
7.0.31 | 126 | 2/12/2025 | |
6.0.47 | 160 | 9/9/2025 | |
6.0.46 | 221 | 9/8/2025 | |
6.0.45 | 188 | 9/5/2025 | |
6.0.44 | 113 | 7/18/2025 | |
6.0.42 | 153 | 7/7/2025 | |
6.0.41 | 151 | 6/16/2025 | |
6.0.40 | 200 | 4/15/2025 | |
6.0.38 | 247 | 3/4/2025 | |
6.0.35 | 231 | 3/3/2025 | |
6.0.34 | 193 | 3/2/2025 | |
6.0.33 | 124 | 3/1/2025 | |
6.0.32 | 138 | 2/13/2025 | |
6.0.31 | 115 | 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);
}
}