aboutsummaryrefslogblamecommitdiffstats
path: root/activejob/lib/active_job/configured_job.rb
blob: 67daf48b366ce2407cde09106ccd8bf31aefc673 (plain) (tree)
1
2
3
4
5
6
                             
 

                              
                                           
                        











                                            
# frozen_string_literal: true

module ActiveJob
  class ConfiguredJob #:nodoc:
    def initialize(job_class, options = {})
      @options = options
      @job_class = job_class
    end

    def perform_now(*args)
      @job_class.new(*args).perform_now
    end

    def perform_later(*args)
      @job_class.new(*args).enqueue @options
    end
  end
end