D | _server.py | 33 def service(implementation, rpc, servicer_context): argument 34 _service.unary_unary(implementation, rpc, request, servicer_context) 41 def service(implementation, rpc, servicer_context): argument 42 _service.unary_stream(implementation, rpc, request, servicer_context) 49 def service(implementation, rpc, servicer_context): argument 50 _service.stream_unary(implementation, rpc, handler, servicer_context) 57 def service(implementation, rpc, servicer_context): argument 58 _service.stream_stream(implementation, rpc, handler, servicer_context) 73 rpc = _rpc.Rpc(handler, invocation_metadata) 74 if handler.add_termination_callback(rpc.extrinsic_abort): [all …]
|