IRunnable.cs
14 lines
| 219 B
| text/x-csharp
|
CSharpLexer
cin
|
r152 | using System; | ||
namespace Implab.Components { | ||||
public interface IRunnable { | ||||
IPromise Start(); | ||||
IPromise Stop(); | ||||
ExecutionState State { get; } | ||||
Exception LastError { get; } | ||||
} | ||||
} | ||||