Cqrs.Akka 2.4.1639.856

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

// Install Cqrs.Akka as a Cake Tool
#tool nuget:?package=Cqrs.Akka&version=2.4.1639.856

Use Akka.NET actors in CQRS.NET

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Cqrs.Akka:

Package Downloads
Cqrs.Ninject.Akka

Use Ninject as your IoC container of choice with Akka.Net for CQRS.NET

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.4.1639.856 1,305 8/17/2018
2.4.1622.842 1,217 6/29/2018
2.4.1621.841 1,108 6/24/2018
2.4.1619.839 1,246 6/24/2018
2.3.1595.820 1,227 3/29/2018
2.3.1584.809 1,178 3/20/2018
2.3.1583.808 1,209 3/20/2018
2.3.1581.806 1,223 3/15/2018
2.3.1580.805 1,178 3/8/2018
2.3.1579.804 1,188 3/8/2018
2.3.1572.797 1,255 2/19/2018
2.2.1466.702 1,190 9/18/2017
2.2.1440.678 1,183 8/1/2017
2.2.1428.666 1,157 7/25/2017
2.2.1410.652 1,156 7/23/2017
2.2.1405.647 1,156 7/21/2017
2.1.1347.590 1,210 6/23/2017
2.0.1317.561 1,198 6/6/2017
1.601.1007 1,364 5/24/2016
1.601.954 1,263 5/2/2016
1.601.790 1,244 2/23/2016
1.601.787 1,319 11/2/2015

Version 2.3

* Added IEventWithIdentity and ICommandWithIdentity to provide better event and command traceability versus aggregate and saga identification.
* Added better command sending abilities into Sagas.

Version 2.1

* Added Saga/Process Manager via a new Cqrs.Akka.Domain.AkkaSaga class. This is an event handler with access to the Command Bus for sending command and uses an EventStore for state management.

Version 2.0

* Added configurable setting to enable certain events and commands to not be required to be handled by the service bus (useful when you want an instance of the system to just run a subset of all possible events that might be received by a poorly configured bus). Currently only AzureService bus support this.
* Added configurable setting to change the default behaviour of the "certain events and commands are required or not" settings into a white-list or black-list
* Added SendAndWait to command senders.
* Added ability to send a collection of commands and events.