Mercurial > pub > ImplabNet
comparison Implab/Components/ExecutionState.cs @ 190:1c2a16d071a7 v2
Слияние с ref20160224
author | cin |
---|---|
date | Fri, 22 Apr 2016 13:08:08 +0300 |
parents | d6a8cba73acc |
children | a867536c68fc |
comparison
equal
deleted
inserted
replaced
161:2a8466f0cb8a | 190:1c2a16d071a7 |
---|---|
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 } |