Deferred.cs
63 lines
| 1.7 KiB
| text/x-csharp
|
CSharpLexer
/ Implab / Deferred.cs
cin
|
r244 | using System; | |
using System.Diagnostics; | |||
cin
|
r251 | using System.Threading.Tasks; | |
cin
|
r244 | ||
namespace Implab { | |||
/// <summary> | |||
/// This class is responsible for the promise resolution, dispatching and chaining | |||
/// </summary> | |||
public class Deferred : IResolvable { | |||
cin
|
r248 | readonly Promise m_promise; | |
cin
|
r249 | internal Deferred() { | |
m_promise = new Promise(); | |||
cin
|
r248 | } | |
internal Deferred(Promise promise, IDispatcher dispatcher) { | |||
cin
|
r244 | Debug.Assert(promise != null); | |
m_promise = promise; | |||
} | |||
public IPromise Promise { | |||
get { return m_promise; } | |||
} | |||
cin
|
r249 | public void Cancel() { | |
Reject(new OperationCanceledException()); | |||
} | |||
public virtual void Reject(Exception error) { | |||
cin
|
r248 | if (error is PromiseTransientException) | |
error = ((PromiseTransientException)error).InnerException; | |||
m_promise.RejectPromise(error); | |||
cin
|
r244 | } | |
cin
|
r249 | public virtual void Resolve() { | |
cin
|
r248 | m_promise.ResolvePromise(); | |
cin
|
r244 | } | |
cin
|
r249 | public virtual void Resolve(IPromise thenable) { | |
cin
|
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
|
r249 | ||
cin
|
r251 | public virtual void Resolve(Task thenable) { | |
if (thenable == null) | |||
Reject(new Exception("The promise or task are expected")); | |||
try { | |||
thenable.Then(this); | |||
} catch(Exception err) { | |||
Reject(err); | |||
} | |||
} | |||
cin
|
r244 | } | |
} |