##// END OF EJS Templates
Added ResetState to RunnableComponent to reset in case of failure...
Added ResetState to RunnableComponent to reset in case of failure Added StateChanged event to IRunnable Renamed Promise.SUCCESS -> Promise.Success Added Promise.FromException Renamed Bundle -> PromiseAll in PromiseExtensions

File last commit:

r196:40d7fed4a09e default
r205:8200ab154c8a v2
Show More
FuncChainTaskT.cs
22 lines | 881 B | text/x-csharp | CSharpLexer
using System;
namespace Implab {
public class FuncChainTask<TArg,TResult> : FuncChainTaskBase<TResult>, IDeferred<TArg> {
readonly Func<TArg, IPromise<TResult>> m_task;
public FuncChainTask(Func<TArg, IPromise<TResult>> task, Func<Exception, IPromise<TResult>> error, Func<Exception, IPromise<TResult>> cancel, bool autoCancellable) : base(error, cancel, autoCancellable){
m_task = task;
}
public void Resolve(TArg value) {
if (m_task != null && LockCancelation()) {
try {
var operation = m_task(value);
operation.On(SetResult, HandleErrorInternal, SetCancelled);
CancellationRequested(operation.Cancel);
} catch (Exception err) {
SetErrorInternal(err);
}
}
}
}
}