def start(self): self._baseLog.info("--> start()") FrontendTunerDevice.start(self) ThreadedComponent.startThread(self, pause=self.PAUSE) self._baseLog.info("<-- start()")
def start(self): self.threadControlLock.acquire() try: FrontendTunerDevice.start(self) if self.process_thread == None: self.process_thread = ProcessThread(target=self.process, pause=self.PAUSE) self.process_thread.start() finally: self.threadControlLock.release()
def start(self): FrontendTunerDevice.start(self) ThreadedComponent.startThread(self, pause=self.PAUSE)