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