Module: NewRelic::Security::Instrumentation::Curl::Multi::Prepend
- Defined in:
- lib/newrelic_security/instrumentation-security/curb/prepend.rb
Instance Method Summary collapse
Methods included from NewRelic::Security::Instrumentation::Curl::Multi
#perform_on_enter, #perform_on_exit
Instance Method Details
#perform(*args, &block) ⇒ Object
8 9 10 11 12 |
# File 'lib/newrelic_security/instrumentation-security/curb/prepend.rb', line 8 def perform(*args, &block) retval = nil event = perform_on_enter(*args) { retval = super } perform_on_exit(event) { return retval } end |