GzipEncoder

object GzipEncoder : CompressionEncoder

Implementation of the gzip encoder.

Functions

Link copied to clipboard
open override fun compress(readChannel: ByteReadChannel, coroutineContext: CoroutineContext): ByteReadChannel

Wraps readChannel into a compressing ByteReadChannel.

open override fun compress(writeChannel: ByteWriteChannel, coroutineContext: CoroutineContext): ByteWriteChannel

Wraps writeChannel into a compressing ByteWriteChannel.

Link copied to clipboard
open fun predictCompressedLength(originalLength: Long): Long?

Provides an estimation for the compressed length based on the originalLength or return null if it's impossible.