method

validate_step_not_encountered!

rails latest stable - Class: ActiveJob::Continuation::Validation

Method not available on this version

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

validate_step_not_encountered!(name)
private

No documentation available.

# File activejob/lib/active_job/continuation/validation.rb, line 21
        def validate_step_not_encountered!(name)
          if encountered.include?(name)
            raise_step_error! "Step '#{name}' has already been encountered"
          end
        end