Example #1
0
 def __init__(self, analyzer):
     '''Constructor
     '''
     self.analyzer = analyzer
     self.running = True
     TealThread.__init__(self)
     return
Example #2
0
 def __init__(self, mgr):
     '''Constructor
     '''
     self.mgr = mgr
     self.running = True
     TealThread.__init__(self)
     return
Example #3
0
 def __init__(self, queue_to_watch):
     '''Constructor
     '''
     self.queue_to_watch = queue_to_watch
     self.running = True
     TealThread.__init__(self)
     return