deflated

fun ByteReadChannel.deflated(    gzip: Boolean = true,     pool: ObjectPool<ByteBuffer> = KtorDefaultPool,     coroutineContext: CoroutineContext = Dispatchers.Unconfined): ByteReadChannel
fun ByteWriteChannel.deflated(    gzip: Boolean = true,     pool: ObjectPool<ByteBuffer> = KtorDefaultPool,     coroutineContext: CoroutineContext = Dispatchers.Unconfined): ByteWriteChannel

Launch a coroutine on coroutineContext that does deflate compression optionally doing CRC and writing GZIP header and trailer if gzip = true

Report a problem