view Implab/Components/ExecutionState.cs @ 222:98eeb63cedb2

sync
author cin
date Tue, 22 Aug 2017 09:34:47 +0300
parents d6a8cba73acc
children a867536c68fc
line wrap: on
line source

namespace Implab.Components {
    
    public enum ExecutionState {
        Undefined = 0,

        Created,

        Initializing,

        Ready,

        Starting,

        Running,

        Stopping,

        Failed,

        Disposed,

        Last = Disposed
    }
}