module NewRelic::Agent::Instrumentation::AsyncHttp::Prepend

Public Instance Methods

call(method, url, headers = nil, body = nil) click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/async_http/prepend.rb, line 11
def call(method, url, headers = nil, body = nil)
  call_with_new_relic(method, url, headers, body) { |hdr| super(method, url, hdr, body) }
end