##// END OF EJS Templates
Working on Implab.Diagnostics
Working on Implab.Diagnostics

File last commit:

r249:d82909310094 v3
r286:67ebcfd7d1c8 v3
Show More
RejectedPromise.cs
37 lines | 792 B | text/x-csharp | CSharpLexer
/ Implab / RejectedPromise.cs
cin
Added awaiters to promises...
r248 using System;
namespace Implab
{
public struct RejectedPromise : IPromise {
readonly Exception m_reason;
public Type ResultType => typeof(void);
public bool IsResolved => true;
public bool IsRejected => true;
public bool IsFulfilled => false;
public Exception RejectReason => m_reason;
public RejectedPromise(Exception reason) {
m_reason = reason;
}
public IPromise<T> Cast<T>() {
throw new InvalidCastException();
}
public void Join() {
cin
Implab.Test moved to xunit...
r249 throw m_reason.Wrap();
cin
Added awaiters to promises...
r248 }
public void Join(int timeout) {
cin
Implab.Test moved to xunit...
r249 throw m_reason.Wrap();
cin
Added awaiters to promises...
r248 }
public void Then(IResolvable next) {
next.Reject(m_reason);
}
}
}