class NewRelic::Agent::HTTPClients::AbstractRequest

This class provides a public interface for wrapping HTTP requests. This may be used to create wrappers that are compatible with New Relic’s external request API.

@api public

Constants

COLON
LHOST
UHOST

Private Instance Methods

not_implemented(method_name) click to toggle source
# File lib/new_relic/agent/http_clients/abstract.rb, line 29
def not_implemented(method_name)
  raise NotImplementedError, MUST_IMPLEMENT_ERROR % [self.class, method_name]
end