module NewRelic::Agent::Instrumentation::GRPC::Server::RpcDescPrepend
Public Instance Methods
Source
# 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
Calls superclass method
Source
# 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
Calls superclass method
Source
# 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
Calls superclass method
Source
# 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
Calls superclass method