##// END OF EJS Templates
major update, added Drain mathod to AsyncQueue class
major update, added Drain mathod to AsyncQueue class

File last commit:

r119:2573b562e328 v2
r124:a336cb13c6a9 v2
Show More
IDeferredT.cs
10 lines | 167 B | text/x-csharp | CSharpLexer
using System;
namespace Implab {
public interface IDeferred<T> : ICancellable {
void Resolve(T value);
void Reject(Exception error);
}
}