Toosame.EventBus.RabbitMQ
1.1.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Toosame.EventBus.RabbitMQ --version 1.1.1
NuGet\Install-Package Toosame.EventBus.RabbitMQ -Version 1.1.1
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="Toosame.EventBus.RabbitMQ" Version="1.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Toosame.EventBus.RabbitMQ --version 1.1.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Toosame.EventBus.RabbitMQ, 1.1.1"
#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 Toosame.EventBus.RabbitMQ as a Cake Addin #addin nuget:?package=Toosame.EventBus.RabbitMQ&version=1.1.1 // Install Toosame.EventBus.RabbitMQ as a Cake Tool #tool nuget:?package=Toosame.EventBus.RabbitMQ&version=1.1.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Toosame.RabbitMQ
An Event Bus Based on RabbitMQ, whose core code is from eShopOnContainers, I just pulled it out and made some extensions, fixes and improvements.
I currently only use it for microservices. If your project has only one ASP. NET Core project, then it may not be suitable for you.
Install from Nuget.org
PM> Install-Package Toosame.EventBus.RabbitMQ -Version 1.1.1
Using (Publish Event)
- Add Event
- Add Event Handler
- Publish Event in Controller
1. Add Event
Create YourEvent.cs
public class YourEvent : IntegrationEvent
{
public string Name { get; set; }
public int Age { get; set; }
}
2. Add Event Handler
Create YourEventHandler.cs
public class YourEventHandler : IIntegrationEventHandler<YourEvent>
{
private readonly IConfiguration _configuration;
public YourEventHandler(IConfiguration configuration){
//I'm just telling you that you can also use Dependency Injection Services.
_configuration = configuration;
}
public Task Handle(YourEvent @event)
{
//you can get @event.Name
//you can get @event.Age
//Do something...
return Task.CompletedTask;
}
}
3. Publish Event in Controller
public class HomeController : Controller
{
private readonly IEventBus _eventBus;
public YourEventHandler(IEventBus eventBus){
_eventBus = eventBus;
}
[HttpGet]
public IAcionResult Index(){
_eventBus.Publish(new YourEvent(){
Name: "my name",
Age: 22
})
}
}
Setup
You can subscribe to the event you just created here.
- Configure appsettings.json
- Setup on
Startup.cs
1. Configure appsettings.json
{
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
"RabbitMQ": {
"EventBusConnection": "<yourRabbitMqHost>[:port(default 5672)]",
"EventBusUserName": "<rabbitMqUserName>",
"EventBusPassword": "<rabbitMqPassword>",
"EventBusRetryCount": 5,
"EventBusBrokeName": "<rabbitMqExchangeName>",
"SubscriptionClientName": "<queueName>" //It's better to have different microservices with different names
}
}
2.Setup on Startup.cs
Standard:
public void ConfigureServices(IServiceCollection services)
{
services.AddEventBus(Configuration.GetSection("RabbitMQ").Get<RabbitMQOption>(),
eventHandlers =>
{
eventHandlers.AddEventHandler<YourEventHandler1>();
eventHandlers.AddEventHandler<YourEventHandler2>();
});
services.AddMvc()
.SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.UseEventBus(eventBus =>
{
eventBus.Subscribe<YourEvent1, YourEventHandler1>();
eventBus.Subscribe<YourEvent2, YourEventHandler2>();
});
app.UseMvc();
}
Using Autofac
:
Please install
Autofac.Extensions.DependencyInjection
package.As below:
public IServiceProvider ConfigureServices(IServiceCollection services)
{
services.AddMvc()
.SetCompatibilityVersion(CompatibilityVersion.Version_2_2)
.AddControllersAsServices();
return services.AddEventBusAsAutofacService(Configuration.GetSection("RabbitMQ").Get<RabbitMQOption>(),
eventHandlers =>
{
eventHandlers.AddEventHandler<YourEventHandler1>();
eventHandlers.AddEventHandler<YourEventHandler2>();
});
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.UseEventBus(eventBus =>
{
eventBus.Subscribe<YourEvent1, YourEventHandler1>();
eventBus.Subscribe<YourEvent2, YourEventHandler2>();
});
app.UseMvc();
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- Autofac (>= 4.9.2)
- Autofac.Extensions.DependencyInjection (>= 4.4.0)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.CSharp (>= 4.5.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.2.0)
- Microsoft.Extensions.Logging.Abstractions (>= 2.2.0)
- Polly (>= 7.1.0)
- RabbitMQ.Client (>= 5.1.0)
- Toosame.EventBus (>= 1.0.6)
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 | |
---|---|---|---|
2.0.1 | 214 | 4/2/2023 | |
2.0.0 | 343 | 11/11/2022 | |
1.1.9 | 362 | 12/10/2021 | |
1.1.8 | 395 | 4/21/2021 | |
1.1.7 | 628 | 8/5/2020 | |
1.1.6 | 490 | 6/23/2020 | |
1.1.5 | 1,063 | 10/4/2019 | |
1.1.3 | 642 | 9/29/2019 | |
1.1.2 | 666 | 8/10/2019 | |
1.1.1 | 548 | 8/10/2019 | |
1.1.0 | 549 | 8/10/2019 | |
1.0.9 | 797 | 7/8/2019 | |
1.0.8 | 528 | 7/8/2019 | |
1.0.7 | 732 | 6/21/2019 | |
1.0.6 | 563 | 6/20/2019 | |
1.0.5 | 528 | 6/20/2019 | |
1.0.4 | 523 | 6/20/2019 | |
1.0.3 | 680 | 5/30/2019 | |
1.0.2 | 534 | 5/29/2019 | |
1.0.1 | 514 | 5/29/2019 | |
1.0.0 | 639 | 5/11/2019 |