A sequence of requests followed by one response (streamed upload). The server returns the aggregated size of client payload as the result.
(ctx context.Context, opts ...grpc.CallOption)
| 67 | // A sequence of requests followed by one response (streamed upload). |
| 68 | // The server returns the aggregated size of client payload as the result. |
| 69 | StreamingInputCall(ctx context.Context, opts ...grpc.CallOption) (grpc.ClientStreamingClient[StreamingInputCallRequest, StreamingInputCallResponse], error) |
| 70 | // A sequence of requests with each request served by the server immediately. |
| 71 | // As one request could lead to multiple responses, this interface |
| 72 | // demonstrates the idea of full duplexing. |
no outgoing calls