module ActiveJob::Execution::ClassMethods

Public Instance Methods

perform_now(*args) click to toggle source

Performs the job immediately.

MyJob.perform_now("mike")
# File lib/active_job/execution.rb, line 14
def perform_now(*args)
  job_or_instantiate(*args).perform_now
end