Skip to content
Advertisement

Asyncio : how to kill a thread in ThreadPoolExecutor by an other coroutine

I have a code like that :

JavaScript

The output is as follow :

JavaScript

As you can see, I have multiples coroutines that I gather on.

The task2 coroutine is particular, because it executes long blocking calls (which are not async) in a separate thread.

The problem is that, when the task1 try to cancel task2, it doesn’t work.

Question : is there a way to kill the long_blocking_sync_calls thread, from the coroutine task1 ?

Thank you

Advertisement

Answer

I end up to a full asyncio solution, by avoiding any long blocking synchronous calls, thanks to various libraries.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement