Module: ActiveJob::Execution::ClassMethods

Defined in:
activejob/lib/active_job/execution.rb

Overview

Includes methods for executing and performing jobs instantly.

Instance Method Summary collapse

Instance Method Details

#execute(job_data) ⇒ Object

:nodoc:



27
28
29
30
31
32
# File 'activejob/lib/active_job/execution.rb', line 27

def execute(job_data) # :nodoc:
  ActiveJob::Callbacks.run_callbacks(:execute) do
    job = deserialize(job_data)
    job.perform_now
  end
end

#perform_nowObject

Performs the job immediately.

MyJob.perform_now("mike")


23
24
25
# File 'activejob/lib/active_job/execution.rb', line 23

def perform_now(...)
  job_or_instantiate(...).perform_now
end