RecvCompress returns the compression algorithm applied to the inbound message. It is empty string if there is no compression applied.
()
| 142 | // RecvCompress returns the compression algorithm applied to the inbound |
| 143 | // message. It is empty string if there is no compression applied. |
| 144 | func (s *ClientStream) RecvCompress() string { |
| 145 | s.waitOnHeader() |
| 146 | return s.recvCompress |
| 147 | } |
| 148 | |
| 149 | // Done returns a channel which is closed when it receives the final status |
| 150 | // from the server. |
nothing calls this directly
no test coverage detected