##// END OF EJS Templates
Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler...
Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler Any unhandled OperationCanceledException will cause the promise cancelation

File last commit:

r144:8c0b95069066 v2
r187:dd4a3590f9c6 ref20160224
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);
}
}