ExecutionState.cs
25 lines
| 293 B
| text/x-csharp
|
CSharpLexer
cin
|
r289 | namespace Implab.Components { | |
public enum ExecutionState { | |||
Undefined = 0, | |||
Created, | |||
Initializing, | |||
Ready, | |||
Starting, | |||
Running, | |||
Stopping, | |||
Stopped, | |||
Failed, | |||
Disposed, | |||
Last = Disposed | |||
} | |||
} |