Method: Narou::Worker#push

Defined in:
lib/web/worker.rb

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



103
104
105
106
107
# File 'lib/web/worker.rb', line 103

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