Class: Appsignal::Hooks::ActionCableHook Private

Inherits:
Hook show all
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

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.

Returns:

  • (Boolean)


11
12
13
14
# File 'lib/appsignal/hooks/action_cable.rb', line 11

def dependencies_present?
  defined?(::ActiveSupport::Notifications::Instrumenter) &&
    defined?(::ActionCable)
end

#installObject

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
# File 'lib/appsignal/hooks/action_cable.rb', line 16

def install
  patch_perform_action
  install_callbacks
end