Mercurial > pub > ImplabNet
view Implab/ActionTaskT.cs @ 193:0d69c0d6de0d
Added tag release v2.1 for changeset f1da3afc3521
author | cin |
---|---|
date | Fri, 22 Apr 2016 13:13:08 +0300 |
parents | dd4a3590f9c6 |
children | 40d7fed4a09e |
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, bool autoCancellable) : base(error,cancel, autoCancellable) { m_task = task; } public void Resolve(T value) { if (m_task != null && LockCancelation()) { try { m_task(value); SetResult(); } catch(OperationCanceledException reason) { HandleCancelInternal(reason); } catch(Exception err) { HandleErrorInternal(err); } } } } }