Mercurial > pub > ImplabNet
annotate Implab/Components/ExecutionState.cs @ 157:948c015a9011 v2
sync
author | cin |
---|---|
date | Thu, 18 Feb 2016 11:03:47 +0300 |
parents | 97fbbf816844 |
children | d6a8cba73acc |
rev | line source |
---|---|
152 | 1 namespace Implab.Components { |
154 | 2 |
152 | 3 public enum ExecutionState { |
156
97fbbf816844
Promises: SignalXXX methods merged into SignalHandler method.
cin
parents:
154
diff
changeset
|
4 Reserved = 0, |
152 | 5 Uninitialized, |
156
97fbbf816844
Promises: SignalXXX methods merged into SignalHandler method.
cin
parents:
154
diff
changeset
|
6 Ready, |
152 | 7 Starting, |
8 Running, | |
9 Stopping, | |
10 Stopped, | |
11 Disposed, | |
12 Failed | |
13 } | |
14 } |