Method: HashQueue::Queue#queue

Defined in:
lib/hash_queue/queue.rb

#queue(*objs) ⇒ Object Also known as: enqueue, push, <<, queue_many, enqueue_many, push_many



15
16
17
18
19
20
21
# File 'lib/hash_queue/queue.rb', line 15

def queue(*objs)
  @mutex.synchronize do
    @queue.concat objs
    
    wake_waiting
  end
end