send(obj) Send an object to the other end of the connection which should be read using recv().
multiprocessing.set_start_method(method) Set the method which should be used to start child processes. method can be
class multiprocessing.Lock A non-recursive lock object: a close analog of
fileno() Return the file descriptor or handle used by the connection.
class multiprocessing.Process(group=None, target=None, name=None, args=(), kwargs={}, *, daemon=None) Process objects represent
result(timeout=None) Return the value returned by the call. If the call hasn’t yet completed then this method will wait up to
class threading.Timer(interval, function, args=None, kwargs=None) Create a timer that will run function with arguments
qsize() Return the approximate size of the queue. Because of multithreading/multiprocessing semantics, this number is not reliable
put(obj[, block[, timeout]]) Put obj into the queue. If the optional argument block is True (the default)
Queue.full() Return True if the queue is full, False otherwise. If full() returns True
Page 28 of 29