Class NoCodingCompressor$


  • public class NoCodingCompressor$
    extends Compressor
    Deprecated.
    NoCodingCompressor is internal API and will be moved or removed in the future. Since 10.2.0.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static NoCodingCompressor$ MODULE$
      Deprecated.
      Static reference to the singleton instance of this Scala object.
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      akka.util.ByteString compress​(akka.util.ByteString input)
      Deprecated.
      Compresses the given input and returns compressed data.
      akka.util.ByteString compressAndFinish​(akka.util.ByteString input)
      Deprecated.
      Combines `compress` + `finish`
      akka.util.ByteString compressAndFlush​(akka.util.ByteString input)
      Deprecated.
      Combines `compress` + `flush`
      akka.util.ByteString finish()
      Deprecated.
      Closes this compressed stream and return the remaining compressed data.
      akka.util.ByteString flush()
      Deprecated.
      Flushes any output data and returns the currently remaining compressed data.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • MODULE$

        public static final NoCodingCompressor$ MODULE$
        Deprecated.
        Static reference to the singleton instance of this Scala object.
    • Constructor Detail

      • NoCodingCompressor$

        public NoCodingCompressor$()
        Deprecated.
    • Method Detail

      • compress

        public akka.util.ByteString compress​(akka.util.ByteString input)
        Deprecated.
        Description copied from class: Compressor
        Compresses the given input and returns compressed data. The implementation can and will choose to buffer output data to improve compression. Use flush or compressAndFlush to make sure that all input data has been compressed and pending output data has been returned.
        Specified by:
        compress in class Compressor
        Parameters:
        input - (undocumented)
        Returns:
        (undocumented)
      • flush

        public akka.util.ByteString flush()
        Deprecated.
        Description copied from class: Compressor
        Flushes any output data and returns the currently remaining compressed data.
        Specified by:
        flush in class Compressor
        Returns:
        (undocumented)
      • finish

        public akka.util.ByteString finish()
        Deprecated.
        Description copied from class: Compressor
        Closes this compressed stream and return the remaining compressed data. After calling this method, this Compressor cannot be used any further.
        Specified by:
        finish in class Compressor
        Returns:
        (undocumented)
      • compressAndFlush

        public akka.util.ByteString compressAndFlush​(akka.util.ByteString input)
        Deprecated.
        Description copied from class: Compressor
        Combines `compress` + `flush`
        Specified by:
        compressAndFlush in class Compressor
      • compressAndFinish

        public akka.util.ByteString compressAndFinish​(akka.util.ByteString input)
        Deprecated.
        Description copied from class: Compressor
        Combines `compress` + `finish`
        Specified by:
        compressAndFinish in class Compressor