DefaultGzipDecompressPool is the default implementation of Decompressor interface
| 38 | |
| 39 | // DefaultGzipDecompressPool is the default implementation of Decompressor interface |
| 40 | type DefaultGzipDecompressPool struct { |
| 41 | } |
| 42 | |
| 43 | func (d *DefaultGzipDecompressPool) gzipDecompressPool() sync.Pool { |
| 44 | return sync.Pool{New: func() any { return new(gzip.Reader) }} |
nothing calls this directly
no outgoing calls
no test coverage detected