##// END OF EJS Templates
Prerelease version of RunnableComponent...
Prerelease version of RunnableComponent Added draft messaging interfaces Added more more helpers to Xml/SerializationHelpers

File last commit:

r251:7c7e9ad6fe4a v3
r251:7c7e9ad6fe4a v3
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
}
}