Queue.full()
Return True
if the queue is full, False
otherwise. If full() returns True
it doesn’t guarantee that a subsequent call to get() will not block. Similarly, if full() returns False
it doesn’t guarantee that a subsequent call to put() will not block.
Please login to continue.