threading.active_count()
  • References/Python/Python/Concurrent Execution

threading.active_count() Return the number of Thread objects currently alive. The returned count is equal to the

2025-01-10 15:47:30
concurrent.futures.process.BrokenProcessPool
  • References/Python/Python/Concurrent Execution

exception concurrent.futures.process.BrokenProcessPool Derived from

2025-01-10 15:47:30
sched.scheduler.enterabs()
  • References/Python/Python/Concurrent Execution

scheduler.enterabs(time, priority, action, argument=(), kwargs={}) Schedule a new event. The time argument should be

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

submit(fn, *args, **kwargs) Schedules the callable, fn, to be executed as fn(*args **kwargs) and returns

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

stderr Stderr output of the child process if it was captured by run(). Otherwise, None.

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
subprocess.CompletedProcess.returncode
  • References/Python/Python/Concurrent Execution

returncode Exit status of the child process. Typically, an exit status of 0 indicates that it ran successfully.

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

Condition([lock]) Create a shared

2025-01-10 15:47:30
sched.scheduler.enter()
  • References/Python/Python/Concurrent Execution

scheduler.enter(delay, priority, action, argument=(), kwargs={}) Schedule an event for delay more time units. Other

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

send_bytes(buffer[, offset[, size]]) Send byte data from a bytes-like object as a complete

2025-01-10 15:47:30