Jul-12-2024, 05:18 AM
(This post was last modified: Jul-12-2024, 08:28 AM by Gribouillis.)
Hi,
Is there a way to run a function in a fire and forget manner in python using asyncio from a synchronous function
The code below doesn't work for me. the loop thsat I get from asyncio.get_event_loop() is not running.
Thanks for any pointer.
Terry
Is there a way to run a function in a fire and forget manner in python using asyncio from a synchronous function
The code below doesn't work for me. the loop thsat I get from asyncio.get_event_loop() is not running.
Thanks for any pointer.
Terry
def fire_and_forget(task, *args, **kwargs): loop = asyncio.get_event_loop() if callable(task): return loop.run_in_executor(None, task, *args, **kwargs) else: raise TypeError('Task must be a callable') def foo(): #asynchronous stuff here fire_and_forget(foo)
Gribouillis write Jul-12-2024, 08:28 AM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.