Python Forum
Python multiprocessing Pool apply async wait for process to complete
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python multiprocessing Pool apply async wait for process to complete
#2
If you call the function directly the program will wait and draw the message block when the processes are done. By using apply_async() you are telling python to not wait for completion of the tasks. apply_async() returns an AsyncResult object. This can be used to wait for the process to complete. You can also specify a callback function that is called when the task completes.

You should not block as this will make the user interface unresponsive. I think using the callback is a better idea.

apply_async() is not a good choice for what you are doing. I would go with map_async()

https://docs.python.org/3/library/multiprocessing.html
sunny9495 likes this post
Reply


Messages In This Thread
RE: Python multiprocessing Pool apply async wait for process to complete - by deanhystad - Mar-26-2022, 06:48 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Is this a multiprocessing bug in Python - or am I doing something wrong? haimat 1 1,296 Oct-18-2023, 06:07 AM
Last Post: absalom1
  queue for async function python telegram.ext noctious 0 1,711 Jun-11-2023, 02:58 PM
Last Post: noctious
  Python Serial: How to read the complete line to insert to MySQL? sylar 1 892 Mar-21-2023, 10:06 PM
Last Post: deanhystad
  Question about Creating an Automated Process in Python Supratik1234 0 795 Jan-13-2023, 08:29 PM
Last Post: Supratik1234
  python multiprocessing help -- to extract 10 sql table into csv mg24 3 1,492 Nov-20-2022, 11:50 PM
Last Post: mg24
  Multiprocessing Pool Multiple Instances How to Kill by Pool ID sunny9495 0 809 Nov-16-2022, 05:57 AM
Last Post: sunny9495
  python multiprocessing to download sql table mg24 5 1,614 Oct-31-2022, 03:53 PM
Last Post: Larz60+
  PyRun_SimpleFile calling multiprocessing Python Class cause endless init loop Xeno 2 1,122 Sep-19-2022, 02:32 AM
Last Post: Xeno
  Wait til a date and time KatManDEW 2 1,489 Mar-11-2022, 08:05 PM
Last Post: KatManDEW
  wait for the first of these events Skaperen 4 2,072 Mar-07-2022, 08:46 PM
Last Post: Gribouillis

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020