Method: Narou::Worker#push

Defined in:
lib/web/worker.rb

#push(counting = true, &block) ⇒ Object



66
67
68
69
70
# File 'lib/web/worker.rb', line 66

def push(counting = true, &block)
  countup if counting
  notification_queue
  @queue.push(block: block, counting: counting)
end