##// 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:

r295:28af686e24f7 default
r295:28af686e24f7 default
Show More
IPromiseT.cs
10 lines | 188 B | text/x-csharp | CSharpLexer
cin
Fixed promise rejection when there is not specified error handler in the reaction....
r295 namespace Implab {
cin
Added tests for Implab.ServiceHost.Unity configuration loader.
r289 public interface IPromise<out T> : IPromise {
void Then(IResolvable<T> next);
new T Join();
new T Join(int timeout);
}
}