##// END OF EJS Templates
Added IInitializable.Initialize() overload...
Added IInitializable.Initialize() overload Added IRunnable.Start(), IRunnable.Start() overloads Fixed cancellation of the current operation when Stop() is called More tests

File last commit:

r251:7c7e9ad6fe4a v3
r262:f1696cdc3d7a v3.0.8 v3
Show More
ExecutionState.cs
25 lines | 293 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
cin
Prerelease version of RunnableComponent...
r251 Stopped,
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 }
}