Mercurial > pub > ImplabNet
view Implab/Components/ExecutionState.cs @ 234:8dd666e6b6bf v2
Added implab nuget spec
author | cin |
---|---|
date | Thu, 05 Oct 2017 09:21:23 +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 } }