Includes methods for executing and performing jobs instantly.

Methods

Instance Public methods

perform_now(...)

Performs the job immediately.

MyJob.perform_now("mike")
📝 Source code
# File activejob/lib/active_job/execution.rb, line 23
      def perform_now(...)
        job_or_instantiate(...).perform_now
      end
🔎 See on GitHub