Mercurial > pub > ImplabNet
view Implab/ActionTask.cs @ 211:3eb3255d8cc5 v2
Code review, added a non generic version of SyncContextPromise
| author | cin | 
|---|---|
| date | Tue, 21 Mar 2017 17:29:13 +0300 | 
| parents | 40d7fed4a09e | 
| children | eee3e49dd1ff | 
line wrap: on
 line source
using System; namespace Implab { public class ActionTask : ActionTaskBase, IDeferred { readonly Action m_task; public ActionTask(Action task, Action<Exception> error, Action<Exception> cancel, bool autoCancellable) : base(error,cancel, autoCancellable) { m_task = task; } public void Resolve() { if (m_task != null && LockCancelation()) { try { m_task(); SetResult(); } catch(Exception err) { SetErrorInternal(err); } } } } }
