aboutsummaryrefslogtreecommitdiff
path: root/operationscore/ThreadedSmootCoreObject.py
diff options
context:
space:
mode:
Diffstat (limited to 'operationscore/ThreadedSmootCoreObject.py')
-rw-r--r--operationscore/ThreadedSmootCoreObject.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/operationscore/ThreadedSmootCoreObject.py b/operationscore/ThreadedSmootCoreObject.py
new file mode 100644
index 0000000..90611bc
--- /dev/null
+++ b/operationscore/ThreadedSmootCoreObject.py
@@ -0,0 +1,14 @@
+import pdb
+import threading
+import thread
+import util.Config as configGetter
+from operationscore.SmootCoreObject import SmootCoreObject
+class ThreadedSmootCoreObject(SmootCoreObject, threading.Thread):
+ def __init__(self, argDict, skipValidation = False):
+ self.argDict = argDict
+ self.validateArgs(self.className()+'.params')
+ self.lock = thread.allocate_lock()
+ threading.Thread.__init__(self)
+ self.init() #call init of inheriting class
+ # self.__setitem__ = self.argDict.__setitem__
+ # self.__getitem__ = self.argDict.__getitem__