()
| 554 | nvtx_mark_debug(f"RPC.future.{name}", color="blue", category="RPC") |
| 555 | |
| 556 | def _async_to_sync(): |
| 557 | future = asyncio.run_coroutine_threadsafe( |
| 558 | self._call_async(name, *args, **kwargs), self._loop) |
| 559 | return future.result() |
| 560 | |
| 561 | return self._executor.submit(_async_to_sync) |
| 562 |
nothing calls this directly
no test coverage detected