view Implab/Components/ExecutionState.cs @ 251:7c7e9ad6fe4a v3

Prerelease version of RunnableComponent Added draft messaging interfaces Added more more helpers to Xml/SerializationHelpers
author cin
date Sun, 11 Feb 2018 00:49:51 +0300
parents 9f63dade3a40
children
line wrap: on
line source

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

        Created,

        Initializing,

        Ready,

        Starting,

        Running,

        Stopping,

        Stopped,

        Failed,

        Disposed,

        Last = Disposed
    }
}