EasyActor 0.6.0

dotnet add package EasyActor --version 0.6.0
                    
NuGet\Install-Package EasyActor -Version 0.6.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="EasyActor" Version="0.6.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EasyActor" Version="0.6.0" />
                    
Directory.Packages.props
<PackageReference Include="EasyActor" />
                    
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 EasyActor --version 0.6.0
                    
#r "nuget: EasyActor, 0.6.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.
#:package EasyActor@0.6.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=EasyActor&version=0.6.0
                    
Install as a Cake Addin
#tool nuget:?package=EasyActor&version=0.6.0
                    
Install as a Cake Tool

EasyActor provides a factory that transforms POCOs in actors that are then seen trougth an interface. 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.

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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on EasyActor:

Package Downloads
EasyActor.Pipeline

EasyActor.Pipeline is a lightweigth framework to create asynchroneous pipeline to transform information.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.6.0 1,716 12/27/2015
0.5.1 1,687 10/24/2015