class multiprocessing.SimpleQueue
It is a simplified Queue
type, very close to a locked Pipe
.
-
empty()
-
Return
True
if the queue is empty,False
otherwise.
-
get()
-
Remove and return an item from the queue.
-
put(item)
-
Put item into the queue.
Please login to continue.