multiprocessing.current_process()
  • References/Python/Python/Concurrent Execution

multiprocessing.current_process() Return the Process object corresponding to the current process.

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

threading.enumerate() Return a list of all Thread objects currently alive. The list includes daemonic threads,

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

is_alive() Return whether the thread is alive. This method returns True just before

2025-01-10 15:47:30
multiprocessing.pool.AsyncResult.get()
  • References/Python/Python/Concurrent Execution

get([timeout]) Return the result when it arrives. If timeout is not None and the result does not arrive

2025-01-10 15:47:30
multiprocessing.pool.AsyncResult.ready()
  • References/Python/Python/Concurrent Execution

ready() Return whether the call has completed.

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

subprocess.check_call(args, *, stdin=None, stdout=None, stderr=None, shell=False, timeout=None) Run command with arguments.

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

terminate() Terminate the process. On Unix this is done using the SIGTERM signal; on Windows TerminateProcess()

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

multiprocessing.freeze_support() Add support for when a program which uses multiprocessing has been frozen to produce

2025-01-10 15:47:30
The concurrent package
  • References/Python/Python/Concurrent Execution

Currently, there is only one module in this package:

2025-01-10 15:47:30
threading.BrokenBarrierError
  • References/Python/Python/Concurrent Execution

exception threading.BrokenBarrierError This exception, a subclass of

2025-01-10 15:47:30