Simple publish subscribe event bus suitable for distributing domain events, well integrated with dependency injection and async handling
Install it from Nuget
Install-Package DomainDispatcher
Add this to your startup
services.AddDomainDispatcher((config) =>
{
config.Subscribe<SpecificDomainEvent, SpecificDomainEventHandler>();
});
- Constantine Nalimov
- Vojtech Machacek
This project is licensed under the MIT License - see the LICENSE.md file for details