Mercurial > pub > ImplabNet
annotate Implab/ActionTask.cs @ 207:558f34b2fb50 v2
added Safe.DispatchEvent() a legacy equivalent for '?.Invoke()'
added Safe.Dispose(IEnumerable)
added PromiseExtensions.CancellationPoint to add a cancellation point to the chain of promises
added IPromise<T> PromiseExtensions.Then<T>(this IPromise<T> that, Action<T> success) overloads
added PromiseExtensions.Error() overloads to handle a error or(and) a cancellation
author | cin |
---|---|
date | Wed, 09 Nov 2016 12:03:22 +0300 |
parents | 40d7fed4a09e |
children | eee3e49dd1ff |
rev | line source |
---|---|
145 | 1 using System; |
2 | |
3 namespace Implab { | |
4 public class ActionTask : ActionTaskBase, IDeferred { | |
5 readonly Action m_task; | |
149 | 6 public ActionTask(Action task, Action<Exception> error, Action<Exception> cancel, bool autoCancellable) : base(error,cancel, autoCancellable) { |
145 | 7 m_task = task; |
8 } | |
9 | |
10 public void Resolve() { | |
11 if (m_task != null && LockCancelation()) { | |
12 try { | |
13 m_task(); | |
14 SetResult(); | |
15 } catch(Exception err) { | |
196
40d7fed4a09e
fixed promise chaining behavior, the error handler doesn't handle result or cancellation handlers exceptions these exceptions are propagated to the next handlers.
cin
parents:
187
diff
changeset
|
16 SetErrorInternal(err); |
145 | 17 } |
18 } | |
19 } | |
20 } | |
21 } | |
22 |