multiprocessing.Process.join()

join([timeout])

If the optional argument timeout is None (the default), the method blocks until the process whose join() method is called terminates. If timeout is a positive number, it blocks at most timeout seconds.

A process can be joined many times.

A process cannot join itself because this would cause a deadlock. It is an error to attempt to join a process before it has been started.

doc_python
2016-10-07 17:37:56
Comments
Leave a Comment

Please login to continue.