Sync
Module: pyot.utils.sync
function async_to_sync -> Callable[..., ~R]
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
function sync_to_async -> Callable[..., Awaitable[~R]]
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