concurrent.futures.process.BrokenProcessPool
  • References/Python/Python/Concurrent Execution

exception concurrent.futures.process.BrokenProcessPool Derived from

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

stderr Captured stderr from the child process. A bytes sequence, or a string if run() was called with un

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

class threading.Semaphore(value=1) This class implements semaphore objects. A semaphore manages a counter representing the number

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

Value(typecode, value) Create an object with a writable value attribute and return a proxy for it.

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

class multiprocessing.connection.Listener([address[, family[, backlog[, authenticate[, authkey]]]]]) A wrapper for a bound socket

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

class threading.Condition(lock=None) This class implements condition variable objects. A condition variable allows one or more

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

recv_bytes([maxlength]) Return a complete message of byte data sent from the other end of the connection as a string. Blocks

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

class multiprocessing.Event A clone of

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

get() Remove and return an item from the queue.

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

join_thread() Join the background thread. This can only be used after close() has been called. It blocks until

2025-01-10 15:47:30