##// END OF EJS Templates
Закрыть ветку ref20160224
Закрыть ветку ref20160224

File last commit:

r184:d6a8cba73acc ref20160224
r189:b60643b47078 ref20160224
Show More
ExecutionState.cs
23 lines | 275 B | text/x-csharp | CSharpLexer
cin
component model refactoring
r152 namespace Implab.Components {
cin
docs
r154
cin
component model refactoring
r152 public enum ExecutionState {
cin
working on runnable component
r184 Undefined = 0,
Created,
Initializing,
cin
Promises: SignalXXX methods merged into SignalHandler method....
r156 Ready,
cin
working on runnable component
r184
cin
component model refactoring
r152 Starting,
cin
working on runnable component
r184
cin
component model refactoring
r152 Running,
cin
working on runnable component
r184
cin
component model refactoring
r152 Stopping,
cin
working on runnable component
r184
Failed,
cin
component model refactoring
r152 Disposed,
cin
working on runnable component
r184
Last = Disposed
cin
component model refactoring
r152 }
}