##// END OF EJS Templates
Added awaiters to promises...
Added awaiters to promises Added static methods to Promise Resolve, Reject, All. Updated promise helpers

File last commit:

r248:5cb4826c2c2a v3
r248:5cb4826c2c2a v3
Show More
Deferred`1.cs
53 lines | 1.6 KiB | text/x-csharp | CSharpLexer
cin
missing files
r246 using System;
using System.Diagnostics;
namespace Implab {
public class Deferred<T> : IResolvable<T> {
cin
Added awaiters to promises...
r248 readonly Promise<T> m_promise;
cin
missing files
r246 readonly IDispatcher m_dispatcher;
cin
Added awaiters to promises...
r248 internal Deferred(IDispatcher dispatcher) : this(new Promise<T>(), dispatcher) {
}
internal Deferred(Promise<T> promise, IDispatcher dispatcher) {
cin
missing files
r246 Debug.Assert(promise != null);
m_promise = promise;
m_dispatcher = dispatcher;
}
public IPromise<T> Promise {
get { return m_promise; }
}
public void Reject(Exception error) {
cin
Added awaiters to promises...
r248 if (error is PromiseTransientException)
error = ((PromiseTransientException)error).InnerException;
m_promise.RejectPromise(error);
cin
missing files
r246 }
public void Resolve(T value) {
cin
Added awaiters to promises...
r248 m_promise.ResolvePromise(value);
cin
missing files
r246 }
public void Resolve(IPromise<T> thenable) {
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"));
else if (m_dispatcher != null)
// dispatch (see ecma-262/6.0: 25.4.1.3.2 Promise Resolve Functions)
cin
Added awaiters to promises...
r248 m_dispatcher.Enqueue(Chain, thenable);
cin
missing files
r246 else
Chain(thenable);
}
void Chain(IPromise<T> thenable) {
try {
thenable.Then(this);
} catch (Exception err) {
Reject(err);
}
}
}
}