123456789_123456789_123456789_123456789_123456789_

Class: ActiveSupport::Notifications::Fanout::EventObjectGroup

Do not use. This class is for internal use only.
Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, BaseGroup
Instance Chain:
Inherits: ActiveSupport::Notifications::Fanout::BaseGroup
Defined in: activesupport/lib/active_support/notifications/fanout.rb

Class Method Summary

BaseGroup - Inherited

Instance Method Summary

Constructor Details

This class inherits a constructor from ActiveSupport::Notifications::Fanout::BaseGroup

Instance Method Details

#build_event(name, id, payload) (private)

[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 186

def build_event(name, id, payload)
  ActiveSupport::Notifications::Event.new name, nil, nil, id, payload
end

#finish(name, id, payload)

[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 176

def finish(name, id, payload)
  @event.payload = payload
  @event.finish!

  each do |s|
    s.call(@event)
  end
end

#start(name, id, payload)

[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 171

def start(name, id, payload)
  @event = build_event(name, id, payload)
  @event.start!
end