M
M
Mars362021-11-18 21:45:56
Python
Mars36, 2021-11-18 21:45:56

Is it possible to call an asynchronous method from a thread or pass an asynchronous method to a thread?

The API I'm trying to work with requires asynchronous methods, there is a task that must be processed in parallel, because. takes a long time. But it doesn't work to transfer data/call the required API. What can I do?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Vindicar, 2021-11-18
@Vindicar

Make your program asynchronous. Asynchronous methods require a running reactor loop (loop in asyncio terminology) to execute. This loop takes a thread and all asynchronous coroutines run on that thread. Nothing will come of it without him.
Hypothetically, you can run such a loop in a separate thread and keep the asynchronous code there. But honestly, it's better to try to make your program asynchronous if possible (i.e. if there are no conflicting eternal loops, like in a GUI).

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question