module ActiveJob::Execution::ClassMethods
Includes methods for executing and performing jobs instantly.
Public Instance Methods
perform_now(...)
click to toggle source
Performs the job immediately.
MyJob.perform_now("mike")
# File lib/active_job/execution.rb, line 17 def perform_now(...) job_or_instantiate(...).perform_now end