##// 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:

r144:8c0b95069066 v2
r196:40d7fed4a09e default
Show More
IPromiseT.cs
25 lines | 675 B | text/x-csharp | CSharpLexer
using System;
namespace Implab {
public interface IPromise<out T> : IPromise {
IPromise<T> On(Action<T> success, Action<Exception> error, Action<Exception> cancel);
IPromise<T> On(Action<T> success, Action<Exception> error);
IPromise<T> On(Action<T> success);
new T Join();
new T Join(int timeout);
new IPromise<T> On(Action success, Action<Exception> error, Action<Exception> cancel);
new IPromise<T> On(Action success, Action<Exception> error);
new IPromise<T> On(Action success);
new IPromise<T> On(Action handler, PromiseEventType events);
}
}