Joins all worker threads/processes. Will block until all worker workers have been fully terminated.
(self)
| 687 | self.stopped = True |
| 688 | |
| 689 | def join(self): |
| 690 | """Joins all worker threads/processes. Will block until all worker workers have been fully terminated.""" |
| 691 | self._workers_pool.join() |
| 692 | |
| 693 | def cleanup_cache(self): |
| 694 | if isinstance(self.cache, LocalDiskCache): |
no outgoing calls