multiprocessing.managers.BaseProxy.
  • References/Python/Python/Concurrent Execution

__str__() Return the representation of the referent.

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

class multiprocessing.managers.SyncManager A subclass of BaseManager which can be used for the synchronization

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

multiprocessing.sharedctypes.synchronized(obj[, lock]) Return a process-safe wrapper object for a ctypes object which uses lock

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
subprocess.Popen.wait()
  • References/Python/Python/Concurrent Execution

Popen.wait(timeout=None) Wait for child process to terminate. Set and return returncode attribute.

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

Queue.put(item, block=True, timeout=None) Put item into the queue. If optional args block is true and timeout

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

authkey The process’s authentication key (a byte string). When multiprocessing

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

get([timeout]) Return the result when it arrives. If timeout is not None and the result does not arrive

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

ready() Return whether the call has completed.

2025-01-10 15:47:30