class ActiveSupport::Notifications::Instrumenter

def build_handle(name, payload)

Experimental RBS support (using type sampling data from the type_fusion project).

def build_handle: (String name, Hash payload) -> ActiveSupport::Notifications::Fanout::Handle

This signature was generated using 1 sample from 1 application.

See ActiveSupport::Notifications::Fanout::Handle.

+instrument+ isn't possible.
+build_handle+ is a low-level API intended for cases where using
start and finish of the event and correctly handle any exceptions.
Where possible, it's best to use #instrument, which will record the

#start and #finish must each be called exactly once on the returned object.

Returns a "handle" for an event with the given +name+ and +payload+.
def build_handle(name, payload)
  @notifier.build_handle(name, @id, payload)
end