class ScoutApm::ServerIntegrations::Null

Attributes

logger[R]

Public Class Methods

new(logger) click to toggle source
# File lib/scout_apm/server_integrations/null.rb, line 9
def initialize(logger)
  @logger = logger
end

Public Instance Methods

forking?() click to toggle source
# File lib/scout_apm/server_integrations/null.rb, line 25
def forking?
  false
end
found?() click to toggle source
# File lib/scout_apm/server_integrations/null.rb, line 29
def found?
  false
end
install() click to toggle source
# File lib/scout_apm/server_integrations/null.rb, line 21
def install
  # Nothing to do.
end
name() click to toggle source
# File lib/scout_apm/server_integrations/null.rb, line 13
def name
  :null
end
present?() click to toggle source
# File lib/scout_apm/server_integrations/null.rb, line 17
def present?
  true
end