##// END OF EJS Templates
sync
sync

File last commit:

r208:7d07503621fe v2
r222:98eeb63cedb2 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; }
}
}