_thread.start_new_thread()
  • References/Python/Python/Concurrent Execution

_thread.start_new_thread(function, args[, kwargs]) Start a new thread and return its identifier. The thread executes the function

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
threading.Thread.name
  • References/Python/Python/Concurrent Execution

name A string used for identification purposes only. It has no semantics. Multiple threads may be given the same name. The initial

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

shutdown() Stop the process used by the manager. This is only available if start() has been used to start the server

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

sentinel A numeric handle of a system object which will become “ready” when the process ends. You

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

result(timeout=None) Return the value returned by the call. If the call hasn’t yet completed then this method will wait up to

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

set_running_or_notify_cancel() This method should only be called by Executor implementations before executing the

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

class multiprocessing.Lock A non-recursive lock object: a close analog of

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
subprocess.CompletedProcess.args
  • References/Python/Python/Concurrent Execution

args The arguments used to launch the process. This may be a list or a string.

2025-01-10 15:47:30