Mercurial > pub > ImplabNet
annotate Implab/IPromiseT.cs @ 242:cbe10ac0731e v3
Working on promises
author | cin |
---|---|
date | Wed, 24 Jan 2018 03:03:21 +0300 |
parents | 8c0b95069066 |
children | fb70574741a1 |
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 |
242 | 6 void On(Action<T> success, Action<Exception> error); |
76 | 7 |
144 | 8 new T Join(); |
9 | |
10 new T Join(int timeout); | |
66 | 11 } |
12 } |