(self, executor: concurrent.futures.Executor)
| 272 | return self.asyncio_loop.run_in_executor(executor, func, *args) |
| 273 | |
| 274 | def set_default_executor(self, executor: concurrent.futures.Executor) -> None: |
| 275 | return self.asyncio_loop.set_default_executor(executor) |
| 276 | |
| 277 | |
| 278 | class AsyncIOMainLoop(BaseAsyncIOLoop): |
no outgoing calls