DomainEventBus 1.9.0
dotnet add package DomainEventBus --version 1.9.0
NuGet\Install-Package DomainEventBus -Version 1.9.0
<PackageReference Include="DomainEventBus" Version="1.9.0" />
<PackageVersion Include="DomainEventBus" Version="1.9.0" />
<PackageReference Include="DomainEventBus" />
paket add DomainEventBus --version 1.9.0
#r "nuget: DomainEventBus, 1.9.0"
#addin nuget:?package=DomainEventBus&version=1.9.0
#tool nuget:?package=DomainEventBus&version=1.9.0
DomainEventBus supports the publish and subscription of domain events within an isolated domain model.
Subscribers of those published events are notified on the same thread without all the messy delegate event plumbing.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Added global notifications
Basic usage pattern is:
- Subscribe to an event (of type T) on the this thread
- Raise an event (of event type T) on across all threads within domain model
- Clears all subscriptions (of event type T) on the this thread
- Added Handler - Receives global raised events only
- SubscribeGlobally to an event (of type T) across all threads within domain model
- RaiseGlobally an event (of event type T) across all threads within domain model
- Clears all global subscriptions across all threads within domain model