Method: QueueLite::Worker#run

Defined in:
lib/queue_lite/worker.rb

#runObject



12
13
14
15
16
17
# File 'lib/queue_lite/worker.rb', line 12

def run
  @running = true
  while @running
    perform_once
  end
end