Mercurial > pub > ImplabNet
comparison Implab/IPromiseT.cs @ 104:5f10d54b45df v2
renamed Promise.Last -> Promise.On
Promise.On doesn't changes Promise.IsExclusive property
author | cin |
---|---|
date | Sun, 09 Nov 2014 23:03:45 +0300 |
parents | 279e226dffdd |
children | d4e38929ce36 |
comparison
equal
deleted
inserted
replaced
103:b3f5bc613905 | 104:5f10d54b45df |
---|---|
5 | 5 |
6 new T Join(); | 6 new T Join(); |
7 | 7 |
8 new T Join(int timeout); | 8 new T Join(int timeout); |
9 | 9 |
10 void Last(Action<T> success, Action<Exception> error, Action cancel); | 10 void On(Action<T> success, Action<Exception> error, Action cancel); |
11 | 11 |
12 void Last(Action<T> success, Action<Exception> error); | 12 void On(Action<T> success, Action<Exception> error); |
13 | 13 |
14 void Last(Action<T> success); | 14 void On(Action<T> success); |
15 | 15 |
16 IPromise<T> Then(Action<T> success, Func<Exception,T> error, Action cancel); | 16 IPromise<T> Then(Action<T> success, Func<Exception,T> error, Action cancel); |
17 | 17 |
18 IPromise<T> Then(Action<T> success, Func<Exception,T> error); | 18 IPromise<T> Then(Action<T> success, Func<Exception,T> error); |
19 | 19 |