method

step_started

step_started(event)
public

No documentation available.

# File activejob/lib/active_job/structured_event_subscriber.rb, line 184
    def step_started(event)
      job = event.payload[:job]
      step = event.payload[:step]

      emit_event("active_job.step_started",
        job_class: job.class.name,
        job_id: job.job_id,
        step: step.name,
        cursor: step.cursor,
        resumed: step.resumed?,
      )
    end