##// END OF EJS Templates
fixed promise chaining behavior, the error handler doesn't handle result or cancellation handlers exceptions these exceptions are propagated to the next handlers.
fixed promise chaining behavior, the error handler doesn't handle result or cancellation handlers exceptions these exceptions are propagated to the next handlers.

File last commit:

r152:240aa6994018 v2
r196:40d7fed4a09e 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; }
}
}