view Implab/Components/ExecutionState.cs @ 211:3eb3255d8cc5 v2

Code review, added a non generic version of SyncContextPromise
author cin
date Tue, 21 Mar 2017 17:29:13 +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
    }
}