execution manager added to scope

This commit is contained in:
Volkan Şahin 2016-03-11 17:33:22 +02:00
parent 077b57a095
commit 0644a12548
1 changed files with 7 additions and 0 deletions

View File

@ -19,6 +19,7 @@ class Scope(object):
self.responseQueue=None self.responseQueue=None
self.registration=None self.registration=None
self.eventManager=None self.eventManager=None
self.executionManager=None
@staticmethod @staticmethod
@ -86,3 +87,9 @@ class Scope(object):
def setEventManager(self,eventManager): def setEventManager(self,eventManager):
self.eventManager=eventManager self.eventManager=eventManager
def getExecutionManager(self):
return self.executionManager
def setExecutionManager(self,executionManager):
self.executionManager=executionManager