instance method build_handle

Ruby on Rails 7.2.3

Since v7.1.6

Available in: v7.1.6 v7.2.3 v8.0.4 v8.1.2

Signature

build_handle(name, payload)

Returns a “handle” for an event with the given name and payload.

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

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

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

Parameters

name req
payload req
Source
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 78
      def build_handle(name, payload)
        @notifier.build_handle(name, @id, payload)
      end

Defined in activesupport/lib/active_support/notifications/instrumenter.rb line 78 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActiveSupport::Notifications::Instrumenter

Type at least 2 characters to search.

↑↓ navigate · open · esc close