diff Implab/FuncTask.cs @ 149:eb793fbbe4ea v2

fixed promises cancellation
author cin
date Wed, 06 May 2015 17:11:27 +0300
parents 8c0b95069066
children dd4a3590f9c6
line wrap: on
line diff
--- a/Implab/FuncTask.cs	Wed Apr 15 07:30:20 2015 +0300
+++ b/Implab/FuncTask.cs	Wed May 06 17:11:27 2015 +0300
@@ -5,7 +5,7 @@
     public class FuncTask<T> : FuncTaskBase<T>, IDeferred {
         readonly Func<T> m_task;
 
-        public FuncTask(Func<T> task, Func<Exception, T> error, Func<Exception, T> cancel) : base(error,cancel) {
+        public FuncTask(Func<T> task, Func<Exception, T> error, Func<Exception, T> cancel, bool autoCancellable) : base(error, cancel, autoCancellable) {
             m_task = task;
         }