method

start

start(name, id, payload)
public

No documentation available.

# File activesupport/lib/active_support/subscriber.rb, line 86
    def start(name, id, payload)
      e = ActiveSupport::Notifications::Event.new(name, now, nil, id, payload)
      parent = event_stack.last
      parent << e if parent

      event_stack.push e
    end