class queue.Queue(maxsize=0) Constructor for a FIFO queue. maxsize is an integer that sets the upperbound limit on
class threading.Condition(lock=None) This class implements condition variable objects. A condition variable allows one or more
scheduler.enter(delay, priority, action, argument=(), kwargs={}) Schedule an event for delay more time units. Other
acquire(blocking=True, timeout=-1) Acquire a lock, blocking or non-blocking. When invoked with
get() Remove and return an item from the queue.
getName() setName() Old getter/setter API for name; use it directly as a property instead.
class multiprocessing.connection.Listener([address[, family[, backlog[, authenticate[, authkey]]]]]) A wrapper for a bound socket
address The address which is being used by the Listener object.
send_bytes(buffer[, offset[, size]]) Send byte data from a bytes-like object as a complete
class threading.Semaphore(value=1) This class implements semaphore objects. A semaphore manages a counter representing the number
Page 10 of 29