Class: Appsignal::Hooks::ActionCableHook Private
- Defined in:
- lib/appsignal/hooks/action_cable.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Constant Summary collapse
- REQUEST_ID =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
"_appsignal_action_cable.request_id".freeze
Instance Method Summary collapse
- #dependencies_present? ⇒ Boolean private
- #install ⇒ Object private
Methods inherited from Hook
#initialize, #installed?, register, #try_to_install
Constructor Details
This class inherits a constructor from Appsignal::Hooks::Hook
Instance Method Details
#dependencies_present? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
11 12 13 14 |
# File 'lib/appsignal/hooks/action_cable.rb', line 11 def dependencies_present? defined?(::ActiveSupport::Notifications::Instrumenter) && defined?(::ActionCable) end |
#install ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
16 17 18 19 20 21 |
# File 'lib/appsignal/hooks/action_cable.rb', line 16 def install require "appsignal/integrations/action_cable" ActionCable::Channel::Base.send(:prepend, Appsignal::Integrations::ActionCableIntegration) install_callbacks end |