Mercurial > pub > ImplabNet
view Implab/ActionTaskT.cs @ 148:e6d4b41f0101 v2
fixed timeout handling in promises
author | cin |
---|---|
date | Wed, 15 Apr 2015 07:30:20 +0300 |
parents | 706fccb85524 |
children | eb793fbbe4ea |
line wrap: on
line source
using System; namespace Implab { public class ActionTask<T> : ActionTaskBase, IDeferred<T> { readonly Action<T> m_task; public ActionTask(Action<T> task, Action<Exception> error, Action<Exception> cancel) : base(error,cancel) { m_task = task; } public void Resolve(T value) { if (m_task != null && LockCancelation()) { try { m_task(value); SetResult(); } catch(Exception err) { HandleErrorInternal(err); } } } } }