Queue:
*
Queue
*
Pushing Data into a Queue - push
q = Queue.new
q << "any object including another queue"
# or
q.push :data
#push never blocks