##// END OF EJS Templates
Merge
Merge

File last commit:

r262:f1696cdc3d7a v3.0.8 v3
r283:d1498b67e01a merge default
Show More
IRunnable.cs
14 lines | 219 B | text/x-csharp | CSharpLexer
cin
component model refactoring
r152 using System;
namespace Implab.Components {
public interface IRunnable {
IPromise Start();
IPromise Stop();
ExecutionState State { get; }
Exception LastError { get; }
}
}