view Implab/Components/ExecutionState.cs @ 198:b305c678923a

fixed error handling for chained actions
author koff
date Mon, 10 Oct 2016 03:14:00 +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
    }
}