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
concurrent.futures.process.BrokenProcessPool
  • References/Python/Python/Concurrent Execution

exception concurrent.futures.process.BrokenProcessPool Derived from

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

class multiprocessing.Connection send(obj) Send an object to the other end of

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

multiprocessing.cpu_count() Return the number of CPUs in the system. May raise

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

multiprocessing.active_children() Return list of all live children of the current process. Calling

2025-01-10 15:47:30
_thread.error
  • References/Python/Python/Concurrent Execution

exception _thread.error Raised on thread-specific errors.

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

class multiprocessing.RLock A recursive lock object: a close analog of

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

scheduler.queue Read-only attribute returning a list of upcoming events in the order they will be run. Each event is shown as

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

class multiprocessing.JoinableQueue([maxsize]) JoinableQueue, a Queue subclass, is a queue which additionally

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

multiprocessing.sharedctypes.Value(typecode_or_type, *args, lock=True) The same as RawValue() except that depending

2025-01-10 15:47:30