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

r196:40d7fed4a09e default
r196:40d7fed4a09e default
Show More
FuncChainTask.cs
23 lines | 864 B | text/x-csharp | CSharpLexer
using System;
namespace Implab {
public class FuncChainTask<TResult> : FuncChainTaskBase<TResult>, IDeferred {
readonly Func<IPromise<TResult>> m_task;
public FuncChainTask(Func<IPromise<TResult>> task, Func<Exception, IPromise<TResult>> error, Func<Exception, IPromise<TResult>> cancel, bool autoCancellable)
: base(error, cancel, autoCancellable) {
m_task = task;
}
public void Resolve() {
if (m_task != null && LockCancelation()) {
try {
var operation = m_task();
operation.On(SetResult, HandleErrorInternal, HandleCancelInternal);
CancellationRequested(operation.Cancel);
} catch (Exception err) {
SetErrorInternal(err);
}
}
}
}
}