Commit 070a743c authored by Georgios Dagkakis's avatar Georgios Dagkakis Committed by Sebastien Robin

ObjectInterruption given generic methods postProcessing and initialise

parent 551c6c5e
......@@ -34,6 +34,9 @@ class ObjectInterruption(Process):
Process.__init__(self)
self.victim=victim
def initialize(self):
pass
#the main process of the core object
#this is dummy, every object must have its own implementation
def run(self):
......@@ -46,6 +49,9 @@ class ObjectInterruption(Process):
#returns the internal queue of the victim
def getVictimQueue(self):
return self.victim.getActiveObjectQueue()
def postProcessing(self):
pass
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment