Class NoCodingCompressor$
java.lang.Object
org.apache.pekko.http.scaladsl.coding.Compressor
org.apache.pekko.http.scaladsl.coding.NoCodingCompressor$
Internal API
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final NoCodingCompressor$Static reference to the singleton instance of this Scala object.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionorg.apache.pekko.util.ByteStringcompress(org.apache.pekko.util.ByteString input) Compresses the given input and returns compressed data.org.apache.pekko.util.ByteStringcompressAndFinish(org.apache.pekko.util.ByteString input) Combines `compress` + `finish`org.apache.pekko.util.ByteStringcompressAndFlush(org.apache.pekko.util.ByteString input) Combines `compress` + `flush`org.apache.pekko.util.ByteStringfinish()Closes this compressed stream and return the remaining compressed data.org.apache.pekko.util.ByteStringflush()Flushes any output data and returns the currently remaining compressed data.
- 
Field Details- 
MODULE$Static reference to the singleton instance of this Scala object.
 
- 
- 
Constructor Details- 
NoCodingCompressor$public NoCodingCompressor$()
 
- 
- 
Method Details- 
compresspublic org.apache.pekko.util.ByteString compress(org.apache.pekko.util.ByteString input) Description copied from class:CompressorCompresses the given input and returns compressed data. The implementation can and will choose to buffer output data to improve compression. UseflushorcompressAndFlushto make sure that all input data has been compressed and pending output data has been returned.- Specified by:
- compressin class- Compressor
- Parameters:
- input- (undocumented)
- Returns:
- (undocumented)
 
- 
flushpublic org.apache.pekko.util.ByteString flush()Description copied from class:CompressorFlushes any output data and returns the currently remaining compressed data.- Specified by:
- flushin class- Compressor
- Returns:
- (undocumented)
 
- 
finishpublic org.apache.pekko.util.ByteString finish()Description copied from class:CompressorCloses this compressed stream and return the remaining compressed data. After calling this method, this Compressor cannot be used any further.- Specified by:
- finishin class- Compressor
- Returns:
- (undocumented)
 
- 
compressAndFlushpublic org.apache.pekko.util.ByteString compressAndFlush(org.apache.pekko.util.ByteString input) Description copied from class:CompressorCombines `compress` + `flush`- Specified by:
- compressAndFlushin class- Compressor
 
- 
compressAndFinishpublic org.apache.pekko.util.ByteString compressAndFinish(org.apache.pekko.util.ByteString input) Description copied from class:CompressorCombines `compress` + `finish`- Specified by:
- compressAndFinishin class- Compressor
 
 
-