##// END OF EJS Templates
JSON moved to Formats namespace...
JSON moved to Formats namespace Working in RegularDFA

File last commit:

r152:240aa6994018 v2
r163:419aa51b04fd ref20160224
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; }
}
}