Method: ResqueFuture::FutureJob#perform

Defined in:
lib/resque_future/future_job.rb

#performObject

Perform the job



50
51
52
53
54
# File 'lib/resque_future/future_job.rb', line 50

def perform
  set_result("started_at" => Time.now.utc)
  super
  set_result("finished_at" => Time.now.utc)
end