transportReader reads all the data available for this Stream from the transport and passes them into the decoder, which converts them into a gRPC message stream. The error is io.EOF when the stream is done or another non-nil error if the stream broke.
| 445 | // The error is io.EOF when the stream is done or another non-nil error if |
| 446 | // the stream broke. |
| 447 | type transportReader struct { |
| 448 | _ noCopy |
| 449 | // The handler to control the window update procedure for both this |
| 450 | // particular stream and the associated transport. |
| 451 | windowHandler windowHandler |
| 452 | er error |
| 453 | reader recvBufferReader |
| 454 | } |
| 455 | |
| 456 | // The handler to control the window update procedure for both this |
| 457 | // particular stream and the associated transport. |
nothing calls this directly
no outgoing calls
no test coverage detected