Info
Version: | 0.6.0 |
Author(s): | David Desmaisons |
Last Update: | Sunday, December 27, 2015 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/David-Desmaisons/EasyActor |
NuGet Url: | https://www.nuget.org/packages/EasyActor |
Install
Install-Package EasyActor
dotnet add package EasyActor
paket add EasyActor
EasyActor Download (Unzip the "nupkg" after downloading)
Dependencies
- Castle.Core(>= 3.3.3)
Tags
Actor guarantees that all calls to the actor interface will occur in a separated thread, sequencially.
In order to work, The target interface should only expose methods returning Task or Task. If this not the case, an exception will be raised at runtime when calling a none compliant method.
Make also sure that all method parameters and return values are immutable to avoid concurrency problems.