Module: NewRelic::Security::Instrumentation::Ethon::Multi::Prepend
- Defined in:
- lib/newrelic_security/instrumentation-security/ethon/prepend.rb
Instance Method Summary collapse
Methods included from NewRelic::Security::Instrumentation::Ethon::Multi
#perform_on_enter, #perform_on_exit
Instance Method Details
#perform(*args) ⇒ Object
25 26 27 28 29 |
# File 'lib/newrelic_security/instrumentation-security/ethon/prepend.rb', line 25 def perform(*args) retval = nil event = perform_on_enter(*args) { retval = super } perform_on_exit(event) { return retval } end |