class ActiveJob::ConfiguredJob
:nodoc:
def initialize(job_class, options={})
def initialize(job_class, options={}) @options = options @job_class = job_class end
def perform_later(*args)
def perform_later(*args) @job_class.new(*args).enqueue @options end
def perform_now(*args)
def perform_now(*args) @job_class.new(*args).perform_now end