Stop the thread and join.
(self)
| 81 | self.queue.put(request) |
| 82 | |
| 83 | def stop(self) -> None: |
| 84 | """Stop the thread and join.""" |
| 85 | self.exit_event.set() |
| 86 | self.queue.put((None, -1, 0, 0)) |
| 87 | self.join() |
| 88 | |
| 89 | def run(self) -> None: |
| 90 | log_lines = self.log_lines |
no outgoing calls
no test coverage detected