threading.Thread.join()
  • References/Python/Python/Concurrent Execution

join(timeout=None) Wait until the thread terminates. This blocks the calling thread until the thread whose join()

2025-01-10 15:47:30
threading.RLock.release()
  • References/Python/Python/Concurrent Execution

release() Release a lock, decrementing the recursion level. If after the decrement it is zero, reset the lock to unlocked (not

2025-01-10 15:47:30
multiprocessing.Connection.send()
  • References/Python/Python/Concurrent Execution

send(obj) Send an object to the other end of the connection which should be read using recv().

2025-01-10 15:47:30
subprocess.CalledProcessError.cmd
  • References/Python/Python/Concurrent Execution

cmd Command that was used to spawn the child process.

2025-01-10 15:47:30
multiprocessing.Queue.put()
  • References/Python/Python/Concurrent Execution

put(obj[, block[, timeout]]) Put obj into the queue. If the optional argument block is True (the default)

2025-01-10 15:47:30
subprocess.Popen
  • References/Python/Python/Concurrent Execution

class subprocess.Popen(args, bufsize=-1, executable=None, stdin=None, stdout=None, stderr=None, preexec_fn=None, close_fds=True, shell=False, cwd=None, env=None, un

2025-01-10 15:47:30
multiprocessing.Lock
  • References/Python/Python/Concurrent Execution

class multiprocessing.Lock A non-recursive lock object: a close analog of

2025-01-10 15:47:30
multiprocessing.Process.exitcode
  • References/Python/Python/Concurrent Execution

exitcode The child’s exit code. This will be None if the process has not yet terminated. A negative value -N

2025-01-10 15:47:30
multiprocessing.Queue.qsize()
  • References/Python/Python/Concurrent Execution

qsize() Return the approximate size of the queue. Because of multithreading/multiprocessing semantics, this number is not reliable

2025-01-10 15:47:30
concurrent.futures.Future.result()
  • References/Python/Python/Concurrent Execution

result(timeout=None) Return the value returned by the call. If the call hasn’t yet completed then this method will wait up to

2025-01-10 15:47:30