Mercurial > pub > ImplabNet
comparison Implab/FuncChainTask.cs @ 145:706fccb85524 v2
RC: cancellation support for promises + tests
author | cin |
---|---|
date | Sun, 08 Mar 2015 02:52:27 +0300 |
parents | |
children | eb793fbbe4ea |
comparison
equal
deleted
inserted
replaced
144:8c0b95069066 | 145:706fccb85524 |
---|---|
1 using System; | |
2 | |
3 namespace Implab { | |
4 public class FuncChainTask<TResult> : FuncChainTaskBase<TResult>, IDeferred { | |
5 readonly Func<IPromise<TResult>> m_task; | |
6 | |
7 public FuncChainTask(Func<IPromise<TResult>> task, Func<Exception, IPromise<TResult>> error, Func<Exception, IPromise<TResult>> cancel) : base(error, cancel){ | |
8 m_task = task; | |
9 } | |
10 | |
11 public void Resolve() { | |
12 if (m_task != null && LockCancelation()) { | |
13 try { | |
14 Observe(m_task()); | |
15 } catch (Exception err) { | |
16 HandleErrorInternal(err); | |
17 } | |
18 } | |
19 } | |
20 } | |
21 } |