Mercurial > pub > ImplabNet
view Implab/Components/ExecutionState.cs @ 245:b904e0a3ba72 v3
working on promises
author | cin |
---|---|
date | Fri, 26 Jan 2018 04:13:34 +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 } }