##// END OF EJS Templates
Fixed promise rejection when there is not specified error handler in the reaction....
Fixed promise rejection when there is not specified error handler in the reaction. FIXED SPELLING IN THE XML CONTAINER CONFIGURATION signleton->singleton Code cleanup Update tests make them working on dotnet core

File last commit:

r289:95896f882995 v3.0.14 v3
r295:28af686e24f7 default
Show More
ResolvedPromise`1.cs
46 lines | 939 B | text/x-csharp | CSharpLexer
/ Implab / src / ResolvedPromise`1.cs
using System;
namespace Implab {
public struct ResolvedPromise<T> : IPromise<T> {
T m_result;
public Type ResultType => typeof(T);
public bool IsResolved => true;
public bool IsRejected => false;
public bool IsFulfilled => true;
public Exception RejectReason => null;
public ResolvedPromise(T result) {
m_result = result;
}
public IPromise<T2> Cast<T2>() {
return (IPromise<T2>)(IPromise<T>)this;
}
void IPromise.Join() {
}
void IPromise.Join(int timeout) {
}
public T Join() {
return m_result;
}
public T Join(int timeout) {
return m_result;
}
public void Then(IResolvable<T> next) {
next.Resolve(m_result);
}
public void Then(IResolvable next) {
next.Resolve();
}
}
}