BytesReceived indicates whether any bytes have been received on this stream.
()
| 117 | |
| 118 | // BytesReceived indicates whether any bytes have been received on this stream. |
| 119 | func (s *ClientStream) BytesReceived() bool { |
| 120 | return s.bytesReceived.Load() |
| 121 | } |
| 122 | |
| 123 | // Unprocessed indicates whether the server did not process this stream -- |
| 124 | // i.e. it sent a refused stream or GOAWAY including this stream ID. |
no test coverage detected