Mercurial > pub > ImplabNet
diff Implab/ActionTask.cs @ 149:eb793fbbe4ea v2
fixed promises cancellation
author | cin |
---|---|
date | Wed, 06 May 2015 17:11:27 +0300 |
parents | 706fccb85524 |
children | dd4a3590f9c6 |
line wrap: on
line diff
--- a/Implab/ActionTask.cs Wed Apr 15 07:30:20 2015 +0300 +++ b/Implab/ActionTask.cs Wed May 06 17:11:27 2015 +0300 @@ -3,7 +3,7 @@ namespace Implab { public class ActionTask : ActionTaskBase, IDeferred { readonly Action m_task; - public ActionTask(Action task, Action<Exception> error, Action<Exception> cancel) : base(error,cancel) { + public ActionTask(Action task, Action<Exception> error, Action<Exception> cancel, bool autoCancellable) : base(error,cancel, autoCancellable) { m_task = task; }