diff Implab/Components/ExecutionState.cs @ 190:1c2a16d071a7 v2

Слияние с ref20160224
author cin
date Fri, 22 Apr 2016 13:08:08 +0300
parents d6a8cba73acc
children a867536c68fc
line wrap: on
line diff
--- a/Implab/Components/ExecutionState.cs	Fri Feb 19 18:07:17 2016 +0300
+++ b/Implab/Components/ExecutionState.cs	Fri Apr 22 13:08:08 2016 +0300
@@ -1,14 +1,24 @@
 namespace Implab.Components {
     
     public enum ExecutionState {
-        Reserved = 0,
-        Uninitialized,
+        Undefined = 0,
+
+        Created,
+
+        Initializing,
+
         Ready,
+
         Starting,
+
         Running,
+
         Stopping,
-        Stopped,
+
+        Failed,
+
         Disposed,
-        Failed
+
+        Last = Disposed
     }
 }
\ No newline at end of file