Mercurial > pub > ImplabNet
view Implab/FuncChainTask.cs @ 196:40d7fed4a09e
fixed promise chaining behavior, the error handler doesn't handle result or cancellation handlers exceptions these exceptions are propagated to the next handlers.
author | cin |
---|---|
date | Mon, 29 Aug 2016 23:15:51 +0300 |
parents | dd4a3590f9c6 |
children | eee3e49dd1ff |
line wrap: on
line source
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); } } } } }