Mercurial > pub > ImplabNet
annotate Implab/FuncChainTaskT.cs @ 187:dd4a3590f9c6 ref20160224
Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler
Any unhandled OperationCanceledException will cause the promise cancelation
author | cin |
---|---|
date | Tue, 19 Apr 2016 17:35:20 +0300 |
parents | eb793fbbe4ea |
children | 40d7fed4a09e |
rev | line source |
---|---|
145 | 1 using System; |
2 | |
3 namespace Implab { | |
4 public class FuncChainTask<TArg,TResult> : FuncChainTaskBase<TResult>, IDeferred<TArg> { | |
5 readonly Func<TArg, IPromise<TResult>> m_task; | |
6 | |
149 | 7 public FuncChainTask(Func<TArg, IPromise<TResult>> task, Func<Exception, IPromise<TResult>> error, Func<Exception, IPromise<TResult>> cancel, bool autoCancellable) : base(error, cancel, autoCancellable){ |
145 | 8 m_task = task; |
9 } | |
10 | |
11 public void Resolve(TArg value) { | |
12 if (m_task != null && LockCancelation()) { | |
13 try { | |
149 | 14 var operation = m_task(value); |
15 operation.On(SetResult, HandleErrorInternal, SetCancelled); | |
16 CancellationRequested(operation.Cancel); | |
187
dd4a3590f9c6
Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler
cin
parents:
149
diff
changeset
|
17 } catch (OperationCanceledException reason) { |
dd4a3590f9c6
Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler
cin
parents:
149
diff
changeset
|
18 HandleCancelInternal(reason); |
145 | 19 } catch (Exception err) { |
20 HandleErrorInternal(err); | |
21 } | |
22 } | |
23 } | |
24 } | |
25 } |