145
|
1 using System;
|
|
2
|
|
3 namespace Implab {
|
|
4 public class ActionChainTask<T> : ActionChainTaskBase, IDeferred<T> {
|
|
5 readonly Func<T, IPromise> m_task;
|
|
6
|
|
7 public ActionChainTask(Func<T, IPromise> task, Func<Exception, IPromise> error, Func<Exception, IPromise> cancel) : base(error,cancel) {
|
|
8 m_task = task;
|
|
9 }
|
|
10
|
|
11 public void Resolve(T value) {
|
|
12 if (m_task != null && LockCancelation()) {
|
|
13 try {
|
|
14 Observe(m_task(value));
|
|
15 } catch(Exception err) {
|
|
16 HandleErrorInternal(err);
|
|
17 }
|
|
18 }
|
|
19 }
|
|
20
|
|
21 }
|
|
22 }
|
|
23
|