method

start

start(name, id, payload)
public

No documentation available.

# File activesupport/lib/active_support/notifications/fanout.rb, line 277
      def start(name, id, payload)
        handle_stack = (IsolatedExecutionState[:_fanout_handle_stack] ||= [])
        handle = build_handle(name, id, payload)
        handle_stack << handle
        handle.start
      end