ExecutionState.cs
11 lines
| 216 B
| text/x-csharp
|
CSharpLexer
cin
|
r152 | namespace Implab.Components { | |
public enum ExecutionState { | |||
Uninitialized, | |||
Initial, | |||
Starting, | |||
Running, | |||
Stopping, | |||
Stopped, | |||
Disposed, | |||
Failed | |||
} | |||
} |