Method: ActiveSupport::Notifications::Fanout::Handle#finish_with_values

Defined in:
activesupport/lib/active_support/notifications/fanout.rb

#finish_with_values(name, id, payload) ⇒ Object

:nodoc:



253
254
255
256
257
258
259
260
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 253

def finish_with_values(name, id, payload) # :nodoc:
  ensure_state! :started
  @state = :finished

  iterate_guarding_exceptions(@groups) do |group|
    group.finish(name, id, payload)
  end
end