queue.Queue
  • References/Python/Python/Concurrent Execution

class queue.Queue(maxsize=0) Constructor for a FIFO queue. maxsize is an integer that sets the upperbound limit on

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
multiprocessing.managers.SyncManager.list()
  • References/Python/Python/Concurrent Execution

list() list(sequence) Create a shared list object and return a proxy for it.

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

subprocess.getstatusoutput(cmd) Return (status, output) of executing cmd in a shell.

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

multiprocessing.Array(typecode_or_type, size_or_initializer, *, lock=True) Return a ctypes array allocated from shared memory

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

multiprocessing.Manager() Returns a started SyncManager object which can be used for sharing objects between processes

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
concurrent.futures.Future.running()
  • References/Python/Python/Concurrent Execution

running() Return True if the call is currently being executed and cannot be cancelled.

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

acquire(blocking=True, timeout=-1) Acquire a lock, blocking or non-blocking. When invoked with

2025-01-10 15:47:30
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