##// END OF EJS Templates
Added tag release v2.1 for changeset f1da3afc3521
Added tag release v2.1 for changeset f1da3afc3521

File last commit:

r184:d6a8cba73acc ref20160224
r193:0d69c0d6de0d default
Show More
ExecutionState.cs
23 lines | 275 B | text/x-csharp | CSharpLexer
namespace Implab.Components {
public enum ExecutionState {
Undefined = 0,
Created,
Initializing,
Ready,
Starting,
Running,
Stopping,
Failed,
Disposed,
Last = Disposed
}
}