##// END OF EJS Templates
Implab.Test moved to xunit...
Implab.Test moved to xunit Complete set of PromiseHelpers (Then, Catch, Finally) Removed obsolete types ICancellable, ICancellationToken

File last commit:

r249:d82909310094 v3
r249:d82909310094 v3
Show More
Deferred.cs
52 lines | 1.4 KiB | text/x-csharp | CSharpLexer
cin
working on promises
r244 using System;
using System.Diagnostics;
namespace Implab {
/// <summary>
/// This class is responsible for the promise resolution, dispatching and chaining
/// </summary>
public class Deferred : IResolvable {
cin
Added awaiters to promises...
r248 readonly Promise m_promise;
cin
Implab.Test moved to xunit...
r249 internal Deferred() {
m_promise = new Promise();
cin
Added awaiters to promises...
r248 }
internal Deferred(Promise promise, IDispatcher dispatcher) {
cin
working on promises
r244 Debug.Assert(promise != null);
m_promise = promise;
}
public IPromise Promise {
get { return m_promise; }
}
cin
Implab.Test moved to xunit...
r249 public void Cancel() {
Reject(new OperationCanceledException());
}
public virtual void Reject(Exception error) {
cin
Added awaiters to promises...
r248 if (error is PromiseTransientException)
error = ((PromiseTransientException)error).InnerException;
m_promise.RejectPromise(error);
cin
working on promises
r244 }
cin
Implab.Test moved to xunit...
r249 public virtual void Resolve() {
cin
Added awaiters to promises...
r248 m_promise.ResolvePromise();
cin
working on promises
r244 }
cin
Implab.Test moved to xunit...
r249 public virtual void Resolve(IPromise thenable) {
cin
working on promises
r244 if (thenable == null)
Reject(new Exception("The promise or task are expected"));
if (thenable == m_promise)
Reject(new Exception("The promise cannot be resolved with oneself"));
try {
thenable.Then(this);
} catch (Exception err) {
Reject(err);
}
}
cin
Implab.Test moved to xunit...
r249
cin
working on promises
r244 }
}