DomainEventBus 1.9.0

dotnet add package DomainEventBus --version 1.9.0
                    
NuGet\Install-Package DomainEventBus -Version 1.9.0
                    
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="DomainEventBus" Version="1.9.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DomainEventBus" Version="1.9.0" />
                    
Directory.Packages.props
<PackageReference Include="DomainEventBus" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DomainEventBus --version 1.9.0
                    
#r "nuget: DomainEventBus, 1.9.0"
                    
#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.
#addin nuget:?package=DomainEventBus&version=1.9.0
                    
Install DomainEventBus as a Cake Addin
#tool nuget:?package=DomainEventBus&version=1.9.0
                    
Install DomainEventBus as a Cake Tool

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 Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.

Version Downloads Last updated
1.9.0 1,470 7/21/2016
1.8.0 1,152 7/21/2016
1.7.0 1,230 5/9/2016
1.6.0 1,202 5/9/2016
1.5.0 1,149 5/3/2016
1.2.0 1,160 3/26/2016

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