Emesary 2.0.6

There is a newer version of this package available.
See the version list below for details.

Requires NuGet 2.0.6 or higher.

dotnet add package Emesary --version 2.0.6
NuGet\Install-Package Emesary -Version 2.0.6
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="Emesary" Version="2.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Emesary --version 2.0.6
#r "nuget: Emesary, 2.0.6"
#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 Emesary as a Cake Addin
#addin nuget:?package=Emesary&version=2.0.6

// Install Emesary as a Cake Tool
#tool nuget:?package=Emesary&version=2.0.6

The basic premise of the Emesary messaging system is to allow the decoupled operation of the various components that comprise any system - usually within the same process.

The basic unit of communication is a Notification, which is passed around to any and or all objects that implement the IReceive interface. Using Interfaces and ihneritance it is possible to pass around Notifications that have special meanings to certain objects and allow them to perform the appropriate function.

In our design Notifications are created and sent via a call to NotifyAll. Any object within the system can implement the IReceive interface and register itself with either a Queue (WIP) or a Transmitter to receive all notifications that are sent out. The underlying concept is that one part of a system knows that something needs to be done without needing to know how to do it. The part of the system that needs something done simply creates a notification and sends it out. Once received by the part of the system that is capable of performing the requested Notification the relevant actions will be carried out and a status of OK or Finished returned. See the section on return codes for a complete explanation of these codes and what they mean.

ref. http://chateau-logic.com/content/c-wpf-application-plumbing-using-emesary

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 (1)

Showing the top 1 NuGet packages that depend on Emesary:

Package Downloads
EmesaryMSMQBridge

MSMQ Bridge for Emesary

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.4.4 1,380 12/8/2018
2.4.3 886 12/8/2018
2.4.2 888 12/7/2018
2.4.1 895 12/6/2018
2.4.0 1,132 11/16/2017
2.3.0.1 1,180 4/20/2017
2.3.0 1,136 4/20/2017
2.2.6.4 1,611 12/13/2016
2.2.6.3 1,351 11/23/2016
2.2.6.2 1,343 11/23/2016
2.2.6.1 1,154 11/18/2016
2.2.6 1,146 11/11/2016
2.2.5.1 1,890 9/30/2016
2.2.5 1,130 9/30/2016
2.2.4 1,126 9/30/2016
2.2.3 1,132 9/30/2016
2.2.2 1,153 9/30/2016
2.2.1 1,148 9/30/2016
2.1.1 2,470 2/27/2016
2.0.10.1 1,431 2/26/2016
2.0.10 1,365 6/4/2015
2.0.9 1,444 5/12/2015
2.0.8 1,303 4/17/2015
2.0.7 2,153 2/25/2015
2.0.6 1,484 2/25/2015
2.0.5 1,452 5/31/2014
2.0.4 1,659 8/11/2013
2.0.3 1,349 8/10/2013
2.0.2 1,441 7/25/2013
2.0.1 1,538 5/21/2013
2.0.0 1,467 5/1/2013

2.0.6 Fix lockout after exception due to interlocked decrement on pending not being actioned
2.0.5 Fix inheritnace problem whereby QueuedTransmitter replaced the NotifyAll which was wrong.

2.0.4 Added missing event unlatch

2.0.3 Fix bug in delayed add; to permit concurrency we only add new receivers after messages processed, however the test was wrong.

Added an AutoResetEvent onto the queue to allow better and more efficient thread processing.