You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, I have some async functions that I want to schedule, but the only viable execution seems to be async. Although these async functions are using async API, they also include CPU-intensive code, and using a separate thread or process should provide better concurrency.
There are several ways to run an async function in a new thread, such as those described in these links: Link 1, Link 2, and Link 3. None of them seem to work with the rockertry decorator.
The text was updated successfully, but these errors were encountered:
Currently, I have some async functions that I want to schedule, but the only viable execution seems to be async. Although these async functions are using async API, they also include CPU-intensive code, and using a separate thread or process should provide better concurrency.
There are several ways to run an async function in a new thread, such as those described in these links: Link 1, Link 2, and Link 3. None of them seem to work with the rockertry decorator.
The text was updated successfully, but these errors were encountered: