module ActiveJob::Execution::ClassMethods
def perform_now(*args)
MyJob.perform_now("mike")
Performs the job immediately.
def perform_now(*args) job_or_instantiate(*args).perform_now end
def perform_now(*args) job_or_instantiate(*args).perform_now end