Mercurial > pub > ImplabNet
view Implab/ActionChainTask.cs @ 172:92d5278d1b10 ref20160224
Working on text scanner
author | cin |
---|---|
date | Mon, 14 Mar 2016 01:19:38 +0300 |
parents | eb793fbbe4ea |
children | 822aab37b107 |
line wrap: on
line source
using System; namespace Implab { public class ActionChainTask : ActionChainTaskBase, IDeferred { readonly Func<IPromise> m_task; public ActionChainTask(Func<IPromise> task, Func<Exception, IPromise> error, Func<Exception, IPromise> cancel, bool autoCancellable) : base(error,cancel, autoCancellable) { m_task = task; } public void Resolve() { if (m_task != null && LockCancelation()) { try { var p = m_task(); p.On(SetResult, HandleErrorInternal, SetCancelled); CancellationRequested(p.Cancel); } catch(Exception err) { HandleErrorInternal(err); } } } } }