##// END OF EJS Templates
fixed: the error handler should not handle handlers errors
fixed: the error handler should not handle handlers errors

File last commit:

r184:d6a8cba73acc ref20160224
r197:86187b01c4e0 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
}
}