Deflate algorithm parameters.
- Companion:
- object
- Source:
- DeflateParams.scala
Value members
Abstract fields
Size of the internal buffer. Default size is 32 KB.
Size of the internal buffer. Default size is 32 KB.
- Source:
- DeflateParams.scala
A Boolean indicating whether the FLG.FHCRC
bit is set. Default is false
.
This is provided so that the compressor can be configured to have the CRC16 check enabled.
Why opt-in and not opt-out? It turned out not all clients implemented that right.
More context in this issue.
A Boolean indicating whether the FLG.FHCRC
bit is set. Default is false
.
This is provided so that the compressor can be configured to have the CRC16 check enabled.
Why opt-in and not opt-out? It turned out not all clients implemented that right.
More context in this issue.
- Source:
- DeflateParams.scala
Compression flush mode. Default flush mode is java.util.zip.Deflater.NO_FLUSH.
Compression flush mode. Default flush mode is java.util.zip.Deflater.NO_FLUSH.
- Source:
- DeflateParams.scala
Compression header. Defaults to ZLibParams.Header.ZLIB.
Compression header. Defaults to ZLibParams.Header.ZLIB.
- Source:
- DeflateParams.scala
Compression level. Default level is java.util.zip.Deflater.DEFAULT_COMPRESSION.
Compression level. Default level is java.util.zip.Deflater.DEFAULT_COMPRESSION.
- Source:
- DeflateParams.scala
Compression strategy. Default strategy is java.util.zip.Deflater.DEFAULT_STRATEGY.
Compression strategy. Default strategy is java.util.zip.Deflater.DEFAULT_STRATEGY.
- Source:
- DeflateParams.scala