method

run_step

rails latest stable - Class: ActiveJob::Continuation

Method not available on this version

This method is only available on newer versions. The first available version (v8.1.1) is shown here.

run_step(name, start:, isolated:, &block)
private

No documentation available.

# File activejob/lib/active_job/continuation.rb, line 289
      def run_step(name, start,, isolated,, &block)
        @isolating ||= isolated

        if isolating? && advanced?
          job.interrupt!(reason: :isolating)
        else
          run_step_inline(name, start: start, &block)
        end
      end