Mercurial > pub > ImplabNet
annotate Implab/IPromiseT.cs @ 151:ec91a6dfa5b3 v2
Added support for 'await' operator to promises
author | cin |
---|---|
date | Thu, 04 Feb 2016 02:43:05 +0300 |
parents | 8c0b95069066 |
children | cbe10ac0731e |
rev | line source |
---|---|
66 | 1 using System; |
2 | |
75 | 3 namespace Implab { |
119
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
106
diff
changeset
|
4 public interface IPromise<out T> : IPromise { |
66 | 5 |
138
f75cfa58e3d4
added ICancellable.Cancel(Exception) to allow specify the reason of cancellation
cin
parents:
119
diff
changeset
|
6 IPromise<T> On(Action<T> success, Action<Exception> error, Action<Exception> cancel); |
76 | 7 |
119
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
106
diff
changeset
|
8 IPromise<T> On(Action<T> success, Action<Exception> error); |
76 | 9 |
119
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
106
diff
changeset
|
10 IPromise<T> On(Action<T> success); |
76 | 11 |
144 | 12 new T Join(); |
13 | |
14 new T Join(int timeout); | |
15 | |
16 new IPromise<T> On(Action success, Action<Exception> error, Action<Exception> cancel); | |
17 | |
18 new IPromise<T> On(Action success, Action<Exception> error); | |
19 | |
20 new IPromise<T> On(Action success); | |
21 | |
119
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
106
diff
changeset
|
22 new IPromise<T> On(Action handler, PromiseEventType events); |
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
106
diff
changeset
|
23 |
66 | 24 } |
25 } |