Mercurial > pub > ImplabNet
annotate Implab/FuncTask.cs @ 146:e03ccec4a08d v2
minor changes
author | cin |
---|---|
date | Mon, 09 Mar 2015 17:21:20 +0300 |
parents | 8c0b95069066 |
children | eb793fbbe4ea |
rev | line source |
---|---|
144 | 1 using System; |
2 using System.Threading; | |
3 | |
4 namespace Implab { | |
5 public class FuncTask<T> : FuncTaskBase<T>, IDeferred { | |
6 readonly Func<T> m_task; | |
7 | |
8 public FuncTask(Func<T> task, Func<Exception, T> error, Func<Exception, T> cancel) : base(error,cancel) { | |
9 m_task = task; | |
10 } | |
11 | |
12 public void Resolve() { | |
13 if (m_task != null && LockCancelation()) { | |
14 try { | |
15 SetResult(m_task()); | |
16 } catch(Exception err) { | |
17 HandleErrorInternal(err); | |
18 } | |
19 } | |
20 } | |
21 } | |
22 } | |
23 |