Class NoCodingCompressor$

java.lang.Object
akka.http.scaladsl.coding.Compressor
akka.http.scaladsl.coding.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 final NoCodingCompressor$
    Deprecated.
    Static reference to the singleton instance of this Scala object.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Deprecated.
     
  • Method Summary

    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
    Deprecated.
    Closes this compressed stream and return the remaining compressed data.
    akka.util.ByteString
    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 Details

    • MODULE$

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

    • NoCodingCompressor$

      public NoCodingCompressor$()
      Deprecated.
  • Method Details

    • 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