Class: Taskinator::Queues::ResqueAdapter::JobWorker

Inherits:
Object
  • Object
show all
Defined in:
lib/taskinator/queues/resque.rb

Class Method Summary collapse

Class Method Details

.perform(job_uuid) ⇒ Object



62
63
64
65
66
# File 'lib/taskinator/queues/resque.rb', line 62

def self.perform(job_uuid)
  Taskinator::JobWorker.new(job_uuid).perform do |job, args|
    job.perform(*args)
  end
end