##// 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
PromiseAll.cs
39 lines | 859 B | text/x-csharp | CSharpLexer
using System;
using System.Threading;
namespace Implab
{
class PromiseAll : IResolvable {
int m_count;
readonly Deferred m_deferred;
public bool Done {
get { return m_deferred.Promise.IsResolved; }
}
public IPromise ResultPromise {
get { return m_deferred.Promise; }
}
public void AddPromise(IPromise promise) {
Interlocked.Increment(ref m_count);
}
public PromiseAll(Deferred deferred) {
m_deferred = deferred;
}
public void Resolve() {
if (Interlocked.Decrement(ref m_count) == 0)
m_deferred.Resolve();
}
public void Complete() {
Resolve();
}
public void Reject(Exception error) {
m_deferred.Reject(error);
}
}
}