A sequence of requests with each request served by the server immediately. As one request could lead to multiple responses, this interface demonstrates the idea of full duplexing.
(ctx context.Context, opts ...grpc.CallOption)
| 71 | // As one request could lead to multiple responses, this interface |
| 72 | // demonstrates the idea of full duplexing. |
| 73 | FullDuplexCall(ctx context.Context, opts ...grpc.CallOption) (grpc.BidiStreamingClient[StreamingOutputCallRequest, StreamingOutputCallResponse], error) |
| 74 | // A sequence of requests followed by a sequence of responses. |
| 75 | // The server buffers all the client requests and then serves them in order. A |
| 76 | // stream of responses are returned to the client when the server starts with |
no outgoing calls