Closed
Description
async
functions are often used to integrate the asyncio
event loop from the Python standard library, but Python async
functions are a more general language concept that we use to construct to implement durable coroutines.
However, to interoperate with existing code, we should implement a bridge between the local coroutine scheduler and the asyncio
event loop.