Mercurial > pub > ImplabNet
comparison Implab/FuncChainTask.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 |
---|---|
11 | 11 |
12 public void Resolve() { | 12 public void Resolve() { |
13 if (m_task != null && LockCancelation()) { | 13 if (m_task != null && LockCancelation()) { |
14 try { | 14 try { |
15 var operation = m_task(); | 15 var operation = m_task(); |
16 operation.On(SetResult, HandleErrorInternal, SetCancelled); | 16 operation.On(SetResult, HandleErrorInternal, HandleCancelInternal); |
17 CancellationRequested(operation.Cancel); | 17 CancellationRequested(operation.Cancel); |
18 } catch (OperationCanceledException reason) { | |
19 HandleCancelInternal(reason); | |
18 } catch (Exception err) { | 20 } catch (Exception err) { |
19 HandleErrorInternal(err); | 21 HandleErrorInternal(err); |
20 } | 22 } |
21 } | 23 } |
22 } | 24 } |