o

akka.stream.javadsl

Compression

object Compression

Source
Compression.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Compression
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def gunzip(maxBytesPerChunk: Int): Flow[ByteString, ByteString, NotUsed]

    Creates a Flow that decompresses gzip-compressed stream of data.

    Creates a Flow that decompresses gzip-compressed stream of data.

    maxBytesPerChunk

    Maximum length of the output ByteString chunk.

  2. def inflate(maxBytesPerChunk: Int): Flow[ByteString, ByteString, NotUsed]

    Creates a Flow that decompresses deflate-compressed stream of data.

    Creates a Flow that decompresses deflate-compressed stream of data.

    maxBytesPerChunk

    Maximum length of the output ByteString chunk.