Method: ActiveSupport::Notifications::Fanout::Handle#start

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

#startObject



240
241
242
243
244
245
246
247
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 240

def start
  ensure_state! :initialized
  @state = :started

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