Returns a Pipe that deflates (compresses) its input elements using
a java.util.zip.Deflater with the parameters level, nowrap and strategy.
Returns a Pipe that deflates (compresses) its input elements using
a java.util.zip.Deflater with the parameters level, nowrap and strategy.
the compression level (0-9)
if true then use GZIP compatible compression
size of the internal buffer that is used by the compressor. Default size is 32 KB.
compression strategy -- see java.util.zip.Deflater for details
Returns a Pipe that inflates (decompresses) its input elements using
a java.util.zip.Inflater with the parameter nowrap.
Returns a Pipe that inflates (decompresses) its input elements using
a java.util.zip.Inflater with the parameter nowrap.
if true then support GZIP compatible decompression
size of the internal buffer that is used by the decompressor. Default size is 32 KB.
Provides utilities for compressing/decompressing byte streams.