module NewRelic::Agent::Instrumentation::GRPC::Server::RpcDescPrepend

Public Instance Methods

handle_bidi_streamer(active_call, mth, inter_ctx) click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/grpc/server/rpc_desc_prepend.rb, line 27
def handle_bidi_streamer(active_call, mth, inter_ctx)
  handle_with_tracing(:bidi_streamer, active_call, mth, inter_ctx) { super }
end
handle_client_streamer(active_call, mth, inter_ctx) click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/grpc/server/rpc_desc_prepend.rb, line 19
def handle_client_streamer(active_call, mth, inter_ctx)
  handle_with_tracing(:client_streamer, active_call, mth, inter_ctx) { super }
end
handle_request_response(active_call, mth, inter_ctx) click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/grpc/server/rpc_desc_prepend.rb, line 15
def handle_request_response(active_call, mth, inter_ctx)
  handle_with_tracing(:request_response, active_call, mth, inter_ctx) { super }
end
handle_server_streamer(active_call, mth, inter_ctx) click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/grpc/server/rpc_desc_prepend.rb, line 23
def handle_server_streamer(active_call, mth, inter_ctx)
  handle_with_tracing(:server_streamer, active_call, mth, inter_ctx) { super }
end