Class: Appsignal::Hooks::ActiveJobHook Private

Inherits:
Hook show all
Defined in:
lib/appsignal/hooks/active_job.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.

Defined Under Namespace

Modules: ActiveJobClassInstrumentation, ActiveJobHelpers

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)


9
10
11
# File 'lib/appsignal/hooks/active_job.rb', line 9

def dependencies_present?
  defined?(::ActiveJob)
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.



13
14
15
16
17
18
# File 'lib/appsignal/hooks/active_job.rb', line 13

def install
  ActiveSupport.on_load(:active_job) do
    ::ActiveJob::Base
      .extend ::Appsignal::Hooks::ActiveJobHook::ActiveJobClassInstrumentation
  end
end