concurrent.futures.Future.cancel()
  • References/Python/Python/Concurrent Execution

cancel() Attempt to cancel the call. If the call is currently being executed and cannot be cancelled then the method will return

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

multiprocessing.sharedctypes.RawValue(typecode_or_type, *args) Return a ctypes object allocated from shared memory.

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

Popen.terminate() Stop the child. On Posix OSs the method sends SIGTERM to the child. On Windows the Win32 API function

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

class threading.Lock The class implementing primitive lock objects. Once a thread has acquired a lock, subsequent attempts to

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

pid Return the process ID. Before the process is spawned, this will be None.

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

threading.settrace(func) Set a trace function for all threads started from the threading module. The func

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

exception multiprocessing.ProcessError The base class of all multiprocessing exceptions.

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

apply(func[, args[, kwds]]) Call func with arguments args and keyword arguments kwds. It blocks until

2025-01-10 15:47:30
concurrent.futures.Executor.map()
  • References/Python/Python/Concurrent Execution

map(func, *iterables, timeout=None, chunksize=1) Equivalent to

2025-01-10 15:47:30
concurrent.futures.Future.set_exception()
  • References/Python/Python/Concurrent Execution

set_exception(exception) Sets the result of the work associated with the Future to the

2025-01-10 15:47:30