Mercurial > pub > ImplabNet
view Implab/FuncTask.cs @ 145:706fccb85524 v2
RC: cancellation support for promises + tests
author | cin |
---|---|
date | Sun, 08 Mar 2015 02:52:27 +0300 |
parents | 8c0b95069066 |
children | eb793fbbe4ea |
line wrap: on
line source
using System; using System.Threading; namespace Implab { public class FuncTask<T> : FuncTaskBase<T>, IDeferred { readonly Func<T> m_task; public FuncTask(Func<T> task, Func<Exception, T> error, Func<Exception, T> cancel) : base(error,cancel) { m_task = task; } public void Resolve() { if (m_task != null && LockCancelation()) { try { SetResult(m_task()); } catch(Exception err) { HandleErrorInternal(err); } } } } }