multiprocessing.Connection.send()
  • References/Python/Python/Concurrent Execution

send(obj) Send an object to the other end of the connection which should be read using recv().

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

multiprocessing.set_start_method(method) Set the method which should be used to start child processes. method can be

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
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.Process
  • References/Python/Python/Concurrent Execution

class multiprocessing.Process(group=None, target=None, name=None, args=(), kwargs={}, *, daemon=None) Process objects represent

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

class threading.Timer(interval, function, args=None, kwargs=None) Create a timer that will run function with arguments

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

qsize() Return the approximate size of the queue. Because of multithreading/multiprocessing semantics, this number is not reliable

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

put(obj[, block[, timeout]]) Put obj into the queue. If the optional argument block is True (the default)

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

Queue.full() Return True if the queue is full, False otherwise. If full() returns True

2025-01-10 15:47:30