Packages

o

akka.http.scaladsl.coding

NoCodingCompressor

object NoCodingCompressor extends Compressor

Internal API

Annotations
@InternalApi() @deprecated
Deprecated

(Since version 10.2.0) NoCodingCompressor is internal API and will be moved or removed in the future

Source
NoCoding.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NoCodingCompressor
  2. Compressor
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def compress(input: ByteString): ByteString

    Compresses the given input and returns compressed data.

    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.

    Definition Classes
    NoCodingCompressorCompressor
  2. def compressAndFinish(input: ByteString): ByteString

    Combines compress + finish

    Combines compress + finish

    Definition Classes
    NoCodingCompressorCompressor
  3. def compressAndFlush(input: ByteString): ByteString

    Combines compress + flush

    Combines compress + flush

    Definition Classes
    NoCodingCompressorCompressor
  4. def finish(): ByteString

    Closes this compressed stream and return the remaining compressed data.

    Closes this compressed stream and return the remaining compressed data. After calling this method, this Compressor cannot be used any further.

    Definition Classes
    NoCodingCompressorCompressor
  5. def flush(): ByteString

    Flushes any output data and returns the currently remaining compressed data.

    Flushes any output data and returns the currently remaining compressed data.

    Definition Classes
    NoCodingCompressorCompressor