##// 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
cin
Refactoring
r66 using System;
cin
major refactoring, added tasks support
r75 namespace Implab {
cin
Promises rewritten, added improved version of AsyncQueue
r119 public interface IPromise<out T> : IPromise {
cin
Refactoring
r66
cin
added ICancellable.Cancel(Exception) to allow specify the reason of cancellation
r138 IPromise<T> On(Action<T> success, Action<Exception> error, Action<Exception> cancel);
cin
Refactoring of the IPromise<T> interface...
r76
cin
Promises rewritten, added improved version of AsyncQueue
r119 IPromise<T> On(Action<T> success, Action<Exception> error);
cin
Refactoring of the IPromise<T> interface...
r76
cin
Promises rewritten, added improved version of AsyncQueue
r119 IPromise<T> On(Action<T> success);
cin
Refactoring of the IPromise<T> interface...
r76
cin
DRAFT: refactoring
r144 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);
cin
Promises rewritten, added improved version of AsyncQueue
r119 new IPromise<T> On(Action handler, PromiseEventType events);
cin
Refactoring
r66 }
}