##// END OF EJS Templates
Fixed chaining of promises with 'Then' method
Fixed chaining of promises with 'Then' method

File last commit:

r119:2573b562e328 v2
r135:656815cb7147 v2
Show More
IDeferredT.cs
10 lines | 167 B | text/x-csharp | CSharpLexer
cin
Promises rewritten, added improved version of AsyncQueue
r119 using System;
namespace Implab {
public interface IDeferred<T> : ICancellable {
void Resolve(T value);
void Reject(Exception error);
}
}