Module: NewRelic::Security::Instrumentation::Ethon::Easy::Prepend
Instance Method Summary
collapse
#headers_equals_on_enter, #perform_on_enter, #perform_on_exit
Instance Method Details
8
9
10
|
# File 'lib/newrelic_security/instrumentation-security/ethon/prepend.rb', line 8
def ()
() { return super }
end
|
12
13
14
15
16
|
# File 'lib/newrelic_security/instrumentation-security/ethon/prepend.rb', line 12
def perform(*args)
retval = nil
event = perform_on_enter(*args) { retval = super }
perform_on_exit(event) { return retval }
end
|