method
finish_with_values
rails latest stable - Class:
ActiveSupport::Notifications::Fanout::Handle
finish_with_values(name, id, payload)public
No documentation available.
# File activesupport/lib/active_support/notifications/fanout.rb, line 257
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