module NewRelic::Agent::Instrumentation::MonitoredFiber::Prepend

Public Class Methods

new(*_args, &block) click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/fiber/prepend.rb, line 13
def initialize(*_args, &block)
  traced_block = add_thread_tracing(&block)
  initialize_with_newrelic_tracing { super(&traced_block) }
end