Mercurial > pub > ImplabNet
view Implab/Components/ExecutionState.cs @ 213:9ee78a345738 v2
Minor code changes
author | cin |
---|---|
date | Tue, 11 Apr 2017 01:35:18 +0300 |
parents | a867536c68fc |
children | 9f63dade3a40 |
line wrap: on
line source
namespace Implab.Components { public enum ExecutionState { Undefined = 0, Created, Initializing, Ready, Starting, Running, Suspending, Suspended, Resuming, Stopping, Failed, Disposed, Last = Disposed } }