mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 11:12:16 +03:00
execution manager added to scope
This commit is contained in:
parent
077b57a095
commit
0644a12548
1 changed files with 7 additions and 0 deletions
|
@ -19,6 +19,7 @@ class Scope(object):
|
|||
self.responseQueue=None
|
||||
self.registration=None
|
||||
self.eventManager=None
|
||||
self.executionManager=None
|
||||
|
||||
|
||||
@staticmethod
|
||||
|
@ -86,3 +87,9 @@ class Scope(object):
|
|||
|
||||
def setEventManager(self,eventManager):
|
||||
self.eventManager=eventManager
|
||||
|
||||
def getExecutionManager(self):
|
||||
return self.executionManager
|
||||
|
||||
def setExecutionManager(self,executionManager):
|
||||
self.executionManager=executionManager
|
||||
|
|
Loading…
Reference in a new issue