class Rjob::Worker

Attributes

context[R]
job[R]

Public Class Methods

new(context, job) click to toggle source
# File lib/rjob/worker.rb, line 7
def initialize(context, job)
  @context = context
  @job = job
end
retry_options() click to toggle source
# File lib/rjob/worker.rb, line 12
def self.retry_options
  {
    retry: false
  }
end