Mercurial > pub > ImplabNet
view Implab/FuncChainTask.cs @ 214:9c32ef39b851 v2
Added the time delta column to the interactive trace listener
author | cin |
---|---|
date | Fri, 14 Apr 2017 15:57:23 +0300 |
parents | 40d7fed4a09e |
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); } } } } }