Class: GrpcKit::Rpcs::Server::RequestResponse
- Inherits:
-
GrpcKit::Rpcs::ServerRpc
- Object
- GrpcKit::Rpcs::ServerRpc
- GrpcKit::Rpcs::Server::RequestResponse
- Defined in:
- lib/grpc_kit/rpcs/server_request_response.rb
Instance Attribute Summary
Attributes inherited from GrpcKit::Rpcs::ServerRpc
Instance Method Summary collapse
Methods inherited from GrpcKit::Rpcs::ServerRpc
Constructor Details
This class inherits a constructor from GrpcKit::Rpcs::ServerRpc
Instance Method Details
#invoke(stream, metadata: {}) ⇒ void
This method returns an undefined value.
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/grpc_kit/rpcs/server_request_response.rb', line 12 def invoke(stream, metadata: {}) call = GrpcKit::Calls::Server::RequestResponse.new( metadata: , config: @config, stream: stream, ) request = call.recv if @config.interceptor @config.interceptor.intercept(request, call) do resp = @handler.send(@config.ruby_style_method_name, request, call) call.send_msg(resp) resp end else resp = @handler.send(@config.ruby_style_method_name, request, call) call.send_msg(resp) end end |