FuncTaskT.cs
22 lines
| 682 B
| text/x-csharp
|
CSharpLexer
/ Implab / FuncTaskT.cs
cin
|
r144 | using System; | ||
namespace Implab { | ||||
public class FuncTask<TArg, TResult> : FuncTaskBase<TResult>, IDeferred<TArg> { | ||||
readonly Func<TArg, TResult> m_task; | ||||
cin
|
r149 | public FuncTask(Func<TArg, TResult> task, Func<Exception, TResult> error,Func<Exception, TResult> cancel, bool autoCancellable) : base(error,cancel, autoCancellable) { | ||
cin
|
r144 | m_task = task; | ||
} | ||||
public void Resolve(TArg value) { | ||||
if (m_task != null && LockCancelation()) { | ||||
try { | ||||
SetResult(m_task(value)); | ||||
cin
|
r187 | } catch(Exception err) { | ||
cin
|
r196 | SetErrorInternal(err); | ||
cin
|
r144 | } | ||
} | ||||
} | ||||
} | ||||
} | ||||