toByteReadChannel

fun InputStream.toByteReadChannel(context: CoroutineContext = Dispatchers.IO, pool: <Error class: unknown class><ByteBuffer>): ByteReadChannel
@JvmName(name = "toByteReadChannelWithArrayPool")
fun InputStream.toByteReadChannel(context: CoroutineContext = Dispatchers.IO, pool: <Error class: unknown class><ByteArray> = ByteArrayPool): ByteReadChannel

Open a channel and launch a coroutine to copy bytes from the input stream to the channel. Please note that it may block your async code when started on Dispatchers.Unconfined since InputStream is blocking on it's nature