method

run_rotations

run_rotations(on_rotation)
private

No documentation available.

# File activesupport/lib/active_support/messages/rotator.rb, line 47
        def run_rotations(on_rotation)
          @rotations.find do |rotation|
            if message = yield(rotation) rescue next
              on_rotation&.call
              return message
            end
          end
        end