MCPcopy
hub / github.com/grpc/grpc-go / transportReader

Struct transportReader

internal/transport/transport.go:447–454  ·  view source on GitHub ↗

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.

Source from the content-addressed store, hash-verified

445// The error is io.EOF when the stream is done or another non-nil error if
446// the stream broke.
447type 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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected