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