Class: ActiveSupport::Notifications::InstrumentationRegistry
- Extended by:
- PerThreadRegistry
- Defined in:
- lib/active_support/notifications.rb
Overview
This class is a registry which holds all of the Instrumenter
objects in a particular thread local. To access the Instrumenter
object for a particular notifier
, you can call the following method:
InstrumentationRegistry.instrumenter_for(notifier)
The instrumenters for multiple notifiers are held in a single instance of this class.
Instance Method Summary collapse
-
#initialize ⇒ InstrumentationRegistry
constructor
A new instance of InstrumentationRegistry.
- #instrumenter_for(notifier) ⇒ Object
Constructor Details
#initialize ⇒ InstrumentationRegistry
Returns a new instance of InstrumentationRegistry.
196 197 198 |
# File 'lib/active_support/notifications.rb', line 196 def initialize @registry = {} end |
Instance Method Details
#instrumenter_for(notifier) ⇒ Object
200 201 202 |
# File 'lib/active_support/notifications.rb', line 200 def instrumenter_for(notifier) @registry[notifier] ||= Instrumenter.new(notifier) end |