dispatchrun / dispatch-py

Python package to develop applications with Dispatch.
https://pypi.org/project/dispatch-py/
Apache License 2.0
56 stars 3 forks source link

Interoperability with asyncio #122

Closed achille-roussel closed 5 months ago

achille-roussel commented 8 months ago

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.