Emesary 2.4.4

.NET Standard 2.0 .NET Framework 4.0

Requires NuGet 2.2.1 or higher.

dotnet add package Emesary --version 2.4.4
NuGet\Install-Package Emesary -Version 2.4.4
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.4.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Emesary --version 2.4.4
#r "nuget: Emesary, 2.4.4"
#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.4.4

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

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 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 net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
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,126 12/8/2018
2.4.3 801 12/8/2018
2.4.2 801 12/7/2018
2.4.1 813 12/6/2018
2.4.0 1,025 11/16/2017
2.3.0.1 1,070 4/20/2017
2.3.0 1,032 4/20/2017
2.2.6.4 1,452 12/13/2016
2.2.6.3 1,227 11/23/2016
2.2.6.2 1,212 11/23/2016
2.2.6.1 1,062 11/18/2016
2.2.6 1,051 11/11/2016
2.2.5.1 1,668 9/30/2016
2.2.5 1,041 9/30/2016
2.2.4 1,042 9/30/2016
2.2.3 1,036 9/30/2016
2.2.2 1,053 9/30/2016
2.2.1 1,048 9/30/2016
2.1.1 2,368 2/27/2016
2.0.10.1 1,340 2/26/2016
2.0.10 1,271 6/4/2015
2.0.9 1,316 5/12/2015
2.0.8 1,201 4/17/2015
2.0.7 1,983 2/25/2015
2.0.6 1,379 2/25/2015
2.0.5 1,359 5/31/2014
2.0.4 1,552 8/11/2013
2.0.3 1,245 8/10/2013
2.0.2 1,339 7/25/2013
2.0.1 1,430 5/21/2013
2.0.0 1,364 5/1/2013

2.4.1 Change queued notification list to use ConcurrentQueue rather than List to fix threading issues.
2.4.0 Added support for .NET standard 2.0
2.3.0 Support for 3.5 removed. Use concurrent dictionary from 4.0 to fix concurrency issue
2.2.0 Added ITrackedNotification interface to facilitate asynchronous wait operations based on tracking ID
2.1.0 Added variants for .NET supported versions (3.5, 4, 4.5x, 4.6x)
2.0.8 Added Bridge to Queue recipient.
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.