method

perform_later

Importance_0
v8.1.1 - Show latest stable - 0 notes - Class: ConfiguredJob
perform_later(...) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activejob/lib/active_job/configured_job.rb, line 14
    def perform_later(...)
      job = @job_class.new(...)
      enqueue_result = job.enqueue(@options)

      yield job if block_given?

      enqueue_result
    end
Register or log in to add new notes.