On
https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.mdit was mentioned that response End of stream is marked by:
For responses end-of-stream is indicated by the presence of the END_STREAM flag on the last received HEADERS frame that carries Trailers.
Does gRPC sends multiple such responses on the same HTTP2 stream id?
I was tracing the network traffic, and decode grpc message on the wire.
I thought gRPC never send multiple response on the same stream ID. But found that it indeed do that in some cases.