⬅︎ Back to Decorated Concurrency - Python multiprocessing made really really easy
Sure, you just call `submit` on the `Executor` you're using: http://pythonhosted.org/futures/#concurrent.futures.Executor.submit ...and then you can either call `wait` on it to wait for everything to finish, or use it in a with statement, which does that for you.
Uh?! Can you do fire-and-forget with concurrent.futures?!
Comment
Sure, you just call `submit` on the `Executor` you're using:
http://pythonhosted.org/futures/#concurrent.futures.Executor.submit
...and then you can either call `wait` on it to wait for everything to finish, or use it in a with statement, which does that for you.
Parent comment
Uh?! Can you do fire-and-forget with concurrent.futures?!