diff Implab/IPromiseT.cs @ 106:d4e38929ce36 v2

promises refactoring
author cin
date Mon, 10 Nov 2014 18:00:28 +0300
parents 5f10d54b45df
children 2573b562e328
line wrap: on
line diff
--- a/Implab/IPromiseT.cs	Mon Nov 10 10:17:54 2014 +0300
+++ b/Implab/IPromiseT.cs	Mon Nov 10 18:00:28 2014 +0300
@@ -13,12 +13,6 @@
 
         void On(Action<T> success);
 
-        IPromise<T> Then(Action<T> success, Func<Exception,T> error, Action cancel);
-
-        IPromise<T> Then(Action<T> success, Func<Exception,T> error);
-
-        IPromise<T> Then(Action<T> success);
-
         IPromise<T2> Then<T2>(Func<T, T2> mapper, Func<Exception,T2> error, Action cancel);
 
         IPromise<T2> Then<T2>(Func<T, T2> mapper, Func<Exception,T2> error);