##// END OF EJS Templates
Promises: SignalXXX methods merged into SignalHandler method....
Promises: SignalXXX methods merged into SignalHandler method. Components: RunnableComponent In progress

File last commit:

r152:240aa6994018 v2
r156:97fbbf816844 v2
Show More
IRunnable.cs
14 lines | 219 B | text/x-csharp | CSharpLexer
using System;
namespace Implab.Components {
public interface IRunnable {
IPromise Start();
IPromise Stop();
ExecutionState State { get; }
Exception LastError { get; }
}
}