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 | 157 | 9/9/2025 | |
9.0.46 | 236 | 9/8/2025 | |
9.0.45 | 204 | 9/5/2025 | |
9.0.44 | 138 | 7/18/2025 | |
9.0.42 | 164 | 7/7/2025 | |
9.0.41 | 173 | 6/16/2025 | |
9.0.40 | 226 | 4/15/2025 | |
9.0.38 | 234 | 3/5/2025 | |
9.0.35 | 253 | 3/3/2025 | |
9.0.34 | 134 | 3/2/2025 | |
9.0.33 | 136 | 3/1/2025 | |
9.0.32 | 144 | 2/15/2025 | |
9.0.31 | 148 | 2/12/2025 | |
8.0.47 | 158 | 9/9/2025 | |
8.0.45 | 193 | 9/5/2025 | |
8.0.44 | 113 | 7/18/2025 | |
8.0.42 | 153 | 7/7/2025 | |
8.0.40 | 203 | 4/15/2025 | |
8.0.38 | 235 | 3/5/2025 | |
8.0.35 | 247 | 3/3/2025 | |
8.0.32 | 126 | 2/15/2025 | |
8.0.31 | 140 | 2/12/2025 | |
7.0.47 | 148 | 9/9/2025 | |
7.0.45 | 194 | 9/5/2025 | |
7.0.44 | 118 | 7/18/2025 | |
7.0.42 | 156 | 7/7/2025 | |
7.0.40 | 216 | 4/15/2025 | |
7.0.38 | 225 | 3/5/2025 | |
7.0.35 | 239 | 3/3/2025 | |
7.0.32 | 141 | 2/15/2025 | |
7.0.31 | 136 | 2/12/2025 | |
6.0.47 | 171 | 9/9/2025 | |
6.0.46 | 232 | 9/8/2025 | |
6.0.45 | 199 | 9/5/2025 | |
6.0.44 | 125 | 7/18/2025 | |
6.0.42 | 163 | 7/7/2025 | |
6.0.41 | 161 | 6/16/2025 | |
6.0.40 | 210 | 4/15/2025 | |
6.0.38 | 257 | 3/4/2025 | |
6.0.35 | 241 | 3/3/2025 | |
6.0.34 | 203 | 3/2/2025 | |
6.0.33 | 134 | 3/1/2025 | |
6.0.32 | 150 | 2/13/2025 | |
6.0.31 | 125 | 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);
}
}