Decompressor is used to get the sync.Pool used by the middleware to get Gzip readers
| 33 | |
| 34 | // Decompressor is used to get the sync.Pool used by the middleware to get Gzip readers |
| 35 | type Decompressor interface { |
| 36 | gzipDecompressPool() sync.Pool |
| 37 | } |
| 38 | |
| 39 | // DefaultGzipDecompressPool is the default implementation of Decompressor interface |
| 40 | type DefaultGzipDecompressPool struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…