Mercurial > pub > ImplabNet
comparison Implab/ActionChainTaskT.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 |
comparison
equal
deleted
inserted
replaced
| 186:75103928da09 | 187:dd4a3590f9c6 |
|---|---|
| 10 | 10 |
| 11 public void Resolve(T value) { | 11 public void Resolve(T value) { |
| 12 if (m_task != null && LockCancelation()) { | 12 if (m_task != null && LockCancelation()) { |
| 13 try { | 13 try { |
| 14 var p = m_task(value); | 14 var p = m_task(value); |
| 15 p.On(SetResult, HandleErrorInternal, SetCancelled); | 15 p.On(SetResult, HandleErrorInternal, HandleCancelInternal); |
| 16 CancellationRequested(p.Cancel); | 16 CancellationRequested(p.Cancel); |
| 17 } catch (OperationCanceledException reason) { | |
| 18 HandleCancelInternal(reason); | |
| 17 } catch(Exception err) { | 19 } catch(Exception err) { |
| 18 HandleErrorInternal(err); | 20 HandleErrorInternal(err); |
| 19 } | 21 } |
| 20 } | 22 } |
| 21 } | 23 } |
