Unprocessed indicates whether the server did not process this stream -- i.e. it sent a refused stream or GOAWAY including this stream ID.
()
| 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. |
| 125 | func (s *ClientStream) Unprocessed() bool { |
| 126 | return s.unprocessed.Load() |
| 127 | } |
| 128 | |
| 129 | func (s *ClientStream) waitOnHeader() { |
| 130 | select { |
no test coverage detected