view Implab/Components/ExecutionState.cs @ 208:7d07503621fe v2

RunnableComponent.Dispose(bool,Exception) changed to standart Dispose(bool) IRunnable is now disposable Code cleanups, suppressed some CodeAnalysis warnings
author cin
date Sun, 13 Nov 2016 18:28:17 +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
    }
}