diff Implab/FuncTask.cs @ 144:8c0b95069066 v2

DRAFT: refactoring
author cin
date Fri, 06 Mar 2015 15:45:26 +0300
parents
children eb793fbbe4ea
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Implab/FuncTask.cs	Fri Mar 06 15:45:26 2015 +0300
@@ -0,0 +1,23 @@
+using System;
+using System.Threading;
+
+namespace Implab {
+    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) {
+            m_task = task;
+        }
+
+        public void Resolve() {
+            if (m_task != null && LockCancelation()) {
+                try {
+                    SetResult(m_task());
+                } catch(Exception err) {
+                    HandleErrorInternal(err);
+                }
+            }
+        }
+    }
+}
+