class BackgroundJobs::Job

Attributes

id[W]

Public Instance Methods

error(job, exception) click to toggle source
# File lib/background_jobs/job.rb, line 13
def error(job, exception)
  Airbrake.notify exception
end
execute() click to toggle source
# File lib/background_jobs/job.rb, line 9
def execute
  raise NotImplementedError
end
perform() click to toggle source
# File lib/background_jobs/job.rb, line 5
def perform
  execute
end