Mercurial > pub > ImplabNet
diff Implab/IPromise.cs @ 144:8c0b95069066 v2
DRAFT: refactoring
author | cin |
---|---|
date | Fri, 06 Mar 2015 15:45:26 +0300 |
parents | f75cfa58e3d4 |
children | ec91a6dfa5b3 |
line wrap: on
line diff
--- a/Implab/IPromise.cs Wed Mar 04 18:05:39 2015 +0300 +++ b/Implab/IPromise.cs Fri Mar 06 15:45:26 2015 +0300 @@ -58,13 +58,13 @@ /// exception it will be passed to the dependent promise. /// </para> /// </remarks> - IPromise Then(Action success, Action<Exception> error, Action<Exception> cancel); + /* IPromise Then(Action success, Action<Exception> error, Action<Exception> cancel); IPromise Then(Action success, Action<Exception> error); IPromise Then(Action success); IPromise Chain(Func<IPromise> chained, Func<Exception, IPromise> error, Func<Exception, IPromise> cancel); IPromise Chain(Func<IPromise> chained, Func<Exception, IPromise> error); - IPromise Chain(Func<IPromise> chained); + IPromise Chain(Func<IPromise> chained);*/ /// <summary> /// Adds specified listeners to the current promise.