threading.Event
  • References/Python/Python/Concurrent Execution

class threading.Event Class implementing event objects. An event manages a flag that can be set to true with the set()

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

class multiprocessing.managers.Namespace A type that can register with SyncManager. A

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

returncode Exit status of the child process. If the process exited due to a signal, this will be the negative signal number

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

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

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

multiprocessing.sharedctypes.Array(typecode_or_type, size_or_initializer, *, lock=True) The same as RawArray()

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

Queue([maxsize]) Create a shared

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

fileno() Return the file descriptor or handle used by the connection.

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

_callmethod(methodname[, args[, kwds]]) Call and return the result of a method of the proxy’s referent. If

2025-01-10 15:47:30
_thread.lock.locked()
  • References/Python/Python/Concurrent Execution

lock.locked() Return the status of the lock: True if it has been acquired by some thread, False if

2025-01-10 15:47:30
threading.Barrier.n_waiting
  • References/Python/Python/Concurrent Execution

n_waiting The number of threads currently waiting in the barrier.

2025-01-10 15:47:30