sched.scheduler.cancel()
  • References/Python/Python/Concurrent Execution

scheduler.cancel(event) Remove the event from the queue. If event is not an event currently in the queue, this method

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

Popen.stdin If the stdin argument was PIPE, this attribute is a writeable stream object as returned by

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

_getvalue() Return a copy of the referent. If the referent is unpicklable then this will raise

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

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

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
queue.Queue.put_nowait()
  • References/Python/Python/Concurrent Execution

Queue.put_nowait(item) Equivalent to put(item, False).

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

class subprocess.Popen(args, bufsize=-1, executable=None, stdin=None, stdout=None, stderr=None, preexec_fn=None, close_fds=True, shell=False, cwd=None, env=None, un

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