Appccelerate.StateMachine
3.2.0
See the version list below for details.
dotnet add package Appccelerate.StateMachine --version 3.2.0
NuGet\Install-Package Appccelerate.StateMachine -Version 3.2.0
<PackageReference Include="Appccelerate.StateMachine" Version="3.2.0" />
paket add Appccelerate.StateMachine --version 3.2.0
#r "nuget: Appccelerate.StateMachine, 3.2.0"
// Install Appccelerate.StateMachine as a Cake Addin #addin nuget:?package=Appccelerate.StateMachine&version=3.2.0 // Install Appccelerate.StateMachine as a Cake Tool #tool nuget:?package=Appccelerate.StateMachine&version=3.2.0
Hierarchical state machine with fluent definition syntax
Features:
states and events can be defined with enums, strings or ints - resulting in single class state machines,
actions on transitions, entry and exit actions, transition guards,
hierarchical with different history behaviors to initialize state always to same state or last active state,
fluent definition interface,
synchronous/asynchronous state machine (passive state machine handles state transitions synchronously, active state machine handles state transitions asynchronously on the worker thread of the state machine),
extensible thorough logging,
state machine report for description of state machine (csv, yEd)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages (4)
Showing the top 4 NuGet packages that depend on Appccelerate.StateMachine:
Package | Downloads |
---|---|
JetBrains.Psi.Features.UnitTesting
JetBrains Psi Features UnitTesting Package Version 233.0.20240606.112012 |
|
Weingartner.Wpf.Animation
WPF animation control. Features: * Play, Pause, Forward, Backward buttons * Speed slider * Sticky positions |
|
Dilan.GrpcServiceDiscovery.Grpc
Easy to use Service discovery pattern provider based on Grpc and side car client. |
|
Jtext103.StateMachineThing.DynamicStateMachine
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
5.1.0 | 432,894 | 11/27/2019 |
5.0.0-pre0003 | 4,067 | 12/22/2017 |
4.5.0-pre0000 | 2,709 | 12/1/2017 |
4.4.0 | 212,037 | 7/7/2017 |
4.0.0 | 4,535 | 6/23/2017 |
3.3.0 | 763,994 | 6/2/2017 |
3.2.0 | 2,151 | 5/24/2017 |
2.12.0 | 46,373 | 1/14/2015 |
2.7.0 | 3,857 | 10/6/2014 |
2.1.0 | 6,106 | 1/20/2014 |
1.0.84 | 6,563 | 5/31/2013 |
1.0.83 | 2,467 | 5/31/2013 |
1.0.44 | 5,265 | 10/28/2012 |
1.0.29 | 6,963 | 6/15/2012 |
1.0.25-alpha | 2,171 | 6/12/2012 |
1.0.24-alpha | 2,253 | 4/5/2012 |
1.0.21-alpha | 2,198 | 3/21/2012 |
- targets now .net Standard 1.0 so you can use the state machine almost anywhere .net exists
- fixed a bug when passing a 'null' argument to the state machine