comparison Implab/Components/ExecutionState.cs @ 184:d6a8cba73acc ref20160224

working on runnable component
author cin
date Sat, 16 Apr 2016 03:23:26 +0300
parents 97fbbf816844
children a867536c68fc
comparison
equal deleted inserted replaced
183:4f82e0f161c3 184:d6a8cba73acc
1 namespace Implab.Components { 1 namespace Implab.Components {
2 2
3 public enum ExecutionState { 3 public enum ExecutionState {
4 Reserved = 0, 4 Undefined = 0,
5 Uninitialized, 5
6 Created,
7
8 Initializing,
9
6 Ready, 10 Ready,
11
7 Starting, 12 Starting,
13
8 Running, 14 Running,
15
9 Stopping, 16 Stopping,
10 Stopped, 17
18 Failed,
19
11 Disposed, 20 Disposed,
12 Failed 21
22 Last = Disposed
13 } 23 }
14 } 24 }