Mercurial > pub > ImplabNet
view Implab/ActionChainTask.cs @ 145:706fccb85524 v2
RC: cancellation support for promises + tests
author | cin |
---|---|
date | Sun, 08 Mar 2015 02:52:27 +0300 |
parents | |
children | eb793fbbe4ea |
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) : base(error,cancel) { m_task = task; } public void Resolve() { if (m_task != null && LockCancelation()) { try { Observe(m_task()); } catch(Exception err) { HandleErrorInternal(err); } } } } }