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