cqrs.rabbitMq
1.1.0
dotnet add package cqrs.rabbitMq --version 1.1.0
NuGet\Install-Package cqrs.rabbitMq -Version 1.1.0
<PackageReference Include="cqrs.rabbitMq" Version="1.1.0" />
paket add cqrs.rabbitMq --version 1.1.0
#r "nuget: cqrs.rabbitMq, 1.1.0"
// Install cqrs.rabbitMq as a Cake Addin
#addin nuget:?package=cqrs.rabbitMq&version=1.1.0
// Install cqrs.rabbitMq as a Cake Tool
#tool nuget:?package=cqrs.rabbitMq&version=1.1.0
CQRS + DI + RabbitMQ in Microservice Architecture
A good Software Architect is a software developer who made/witnessed a tremendous amount of design and development mistakes/disasters in the past. He is reading regularly about the other's failure as his main objective and checking the new technologies in his breaks.
Perquisite:
- Learn more about the Microservices
- Learn more about the CQRS
- Learn more about the RabbitMq
- Learn more about DI(Dependency Injection)
When it comes to the enterprise architecture, picking the right technology is the most tricky part and must be taken by the software architect of the team. To make the microservice work properly you need a good service bus architecture. The service architecture is very simple but in the same time the backbone of the inter-communication of the microservices.
Usage
public void ConfigureServices(IServiceCollection services)
{
//...
services.AddMediatR(typeof(Startup));
services.AddSingleton<IEventBus, RabbitMQBus>(sp =>
{
var scopeFactory = sp.GetRequiredService<IServiceScopeFactory>();
return new RabbitMQBus(sp.GetService<IMediator>(), scopeFactory);
});
//...
}
Issue a Command
Receive the Command
Issue an Event
Receive the Event
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETCoreApp 3.1
- MediatR (>= 8.0.2)
- Microsoft.Extensions.Configuration.Abstractions (>= 3.1.5)
- Microsoft.Extensions.DependencyInjection (>= 3.1.6)
- Newtonsoft.Json (>= 12.0.3)
- RabbitMQ.Client (>= 6.1.0)
-
.NETStandard 2.0
- MediatR (>= 8.0.2)
- Microsoft.Extensions.Configuration.Abstractions (>= 3.1.5)
- Microsoft.Extensions.DependencyInjection (>= 3.1.6)
- Newtonsoft.Json (>= 12.0.3)
- RabbitMQ.Client (>= 6.1.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.