Schedule stopping the thread. Use join() to wait, until thread really has been stopped
(self)
| 36 | self.daemon = True |
| 37 | |
| 38 | def schedule_stop(self): |
| 39 | """Schedule stopping the thread. |
| 40 | Use join() to wait, until thread really has been stopped |
| 41 | """ |
| 42 | self._quitEvent.set() |
| 43 | |
| 44 | |
| 45 | class AddressMonitorThread(_StoppableDaemonThread): |