##// END OF EJS Templates
Слияние
Слияние

File last commit:

r208:7d07503621fe v2
r223:27ea7f07e2e4 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; }
}
}