Method: QueueKit::Worker#process

Defined in:
lib/queue_kit/worker.rb

#process(item) ⇒ Object

Raises:

  • (NotImplementedError)


15
16
17
# File 'lib/queue_kit/worker.rb', line 15

def process(item)
  raise NotImplementedError, "This worker can't do anything with #{item.inspect}"
end