view Implab/Components/ExecutionState.cs @ 230:3e26338eb977 v2

slowly cutting off mono specific settings
author cin
date Wed, 13 Sep 2017 16:55: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
    }
}