annotate Implab/IDeferred.cs @ 120:f1b897999260
v2
improved asyncpool usability
working on batch operations on asyncqueue
author |
cin |
date |
Mon, 12 Jan 2015 05:19:52 +0300 |
parents |
2573b562e328 |
children |
f75cfa58e3d4 |
rev |
line source |
119
|
1 using System;
|
|
2
|
|
3 namespace Implab {
|
|
4 /// <summary>
|
|
5 /// Deferred result, usually used by asynchronous services as the service part of the promise.
|
|
6 /// </summary>
|
|
7 public interface IDeferred : ICancellable {
|
|
8
|
|
9 void Resolve();
|
|
10
|
|
11 void Reject(Exception error);
|
|
12 }
|
|
13 }
|
|
14
|