(self, fn, *args, **kwargs)
| 152 | self._executor = BaseThreadPoolExecutor(max_workers=1) |
| 153 | |
| 154 | def submit(self, fn, *args, **kwargs): |
| 155 | return self._executor.submit(self._run, fn, args, kwargs) |
| 156 | |
| 157 | def _run(self, fn, args, kwargs): |
| 158 | start_workers.wait() |
no outgoing calls
no test coverage detected