##// END OF EJS Templates
Added 'Fail' method to RunnableComponent which allows component to move from...
Added 'Fail' method to RunnableComponent which allows component to move from Running to Failed state. Added PollingComponent a timer based runnable component More tests Added FailPromise a thin class to wrap exceptions Fixed error handling in SuccessPromise classes.

File last commit:

r196:40d7fed4a09e default
r203:4d9830a9bbb8 v2
Show More
FuncChainTask.cs
23 lines | 864 B | text/x-csharp | CSharpLexer
using System;
namespace Implab {
public class FuncChainTask<TResult> : FuncChainTaskBase<TResult>, IDeferred {
readonly Func<IPromise<TResult>> m_task;
public FuncChainTask(Func<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() {
if (m_task != null && LockCancelation()) {
try {
var operation = m_task();
operation.On(SetResult, HandleErrorInternal, HandleCancelInternal);
CancellationRequested(operation.Cancel);
} catch (Exception err) {
SetErrorInternal(err);
}
}
}
}
}