##// END OF EJS Templates
improved asyncpool usability...
improved asyncpool usability working on batch operations on asyncqueue

File last commit:

r119:2573b562e328 v2
r120:f1b897999260 v2
Show More
IDeferred.cs
14 lines | 294 B | text/x-csharp | CSharpLexer
cin
Promises rewritten, added improved version of AsyncQueue
r119 using System;
namespace Implab {
/// <summary>
/// Deferred result, usually used by asynchronous services as the service part of the promise.
/// </summary>
public interface IDeferred : ICancellable {
void Resolve();
void Reject(Exception error);
}
}