Deferred`1.cs
60 lines
| 1.7 KiB
| text/x-csharp
|
CSharpLexer
/ Implab / Deferred`1.cs
|
|
r246 | using System; | |
| using System.Diagnostics; | |||
|
|
r251 | using System.Threading.Tasks; | |
|
|
r246 | ||
| namespace Implab { | |||
| public class Deferred<T> : IResolvable<T> { | |||
|
|
r248 | readonly Promise<T> m_promise; | |
|
|
r246 | ||
|
|
r249 | internal Deferred() { | |
| m_promise = new Promise<T>(); | |||
|
|
r248 | } | |
|
|
r249 | protected Deferred(Promise<T> promise) { | |
|
|
r246 | Debug.Assert(promise != null); | |
| m_promise = promise; | |||
| } | |||
| public IPromise<T> Promise { | |||
| get { return m_promise; } | |||
| } | |||
|
|
r249 | public void Cancel() { | |
| Reject(new OperationCanceledException()); | |||
| } | |||
| public virtual void Reject(Exception error) { | |||
|
|
r248 | if (error is PromiseTransientException) | |
| error = ((PromiseTransientException)error).InnerException; | |||
| m_promise.RejectPromise(error); | |||
|
|
r246 | } | |
|
|
r249 | public virtual void Resolve(T value) { | |
|
|
r248 | m_promise.ResolvePromise(value); | |
|
|
r246 | } | |
|
|
r249 | public virtual void Resolve(IPromise<T> thenable) { | |
|
|
r246 | 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); | |||
| } | |||
| } | |||
|
|
r251 | ||
| public virtual void Resolve(Task<T> thenable) { | |||
| if (thenable == null) | |||
| Reject(new Exception("The promise or task are expected")); | |||
| try { | |||
| thenable.Then(this); | |||
| } catch (Exception err) { | |||
| Reject(err); | |||
| } | |||
| } | |||
|
|
r246 | } | |
| } |
