readAll

abstract suspend fun readAll(): ByteArray

Reads all remaining bytes in the source and returns them as a ByteArray


open suspend fun readAll(sink: IKmpIoSink, buffer: ByteArray = ByteArray(16384)): Long

Reads all remaining bytes from the source into provided sink

Parameters

buffer

Allows calling code to pool buffers and pass them in for improved performance.