Sync
Last updated
Module: pyot.utils.sync
async_to_sync -> Callable[..., ~R]func: Callable[..., Awaitable[~R]]
Wraps
asyncio.runon an async function converting it into a blocking function. Can be used as decorator @async_to_sync
sync_to_async -> Callable[..., Awaitable[~R]]func: Callable[..., ~R]
Wraps
asyncio.get_event_loop().run_in_executoron a blocking function converting it into a Future. Can be used as decorator @sync_to_async
Last updated