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

File last commit:

r152:240aa6994018 v2
r192:f1da3afc3521 merge release v2.1 default
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; }
}
}