threading.RLock.acquire()
  • References/Python/Python/Concurrent Execution

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

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

successful() Return whether the call completed without raising an exception. Will raise

2025-01-10 15:47:30
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.Event
  • References/Python/Python/Concurrent Execution

class multiprocessing.Event A clone of

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
sched.scheduler.empty()
  • References/Python/Python/Concurrent Execution

scheduler.empty() Return true if the event queue is empty.

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
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.Thread.getName()
  • References/Python/Python/Concurrent Execution

getName() setName() Old getter/setter API for name; use it directly as a property instead.

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