##// END OF EJS Templates
Merge pull request !2 from ImplabNet v3...
Merge pull request !2 from ImplabNet v3 Changes from branch: V3

File last commit:

r289:95896f882995 v3.0.14 v3
r294:abef3ebaa230 merge default
Show More
ExecutionState.cs
25 lines | 293 B | text/x-csharp | CSharpLexer
namespace Implab.Components {
public enum ExecutionState {
Undefined = 0,
Created,
Initializing,
Ready,
Starting,
Running,
Stopping,
Stopped,
Failed,
Disposed,
Last = Disposed
}
}