readByteArray

expect abstract fun readByteArray(): ByteArray

Reads all bytes from this source and returns them as a byte array

Caution This may pull a large amount of data into memory, only do this if you are sure the contents fit into memory. Throws IllegalArgumentException if the buffer size exceeds Int.MAX_VALUE.


expect abstract fun readByteArray(byteCount: Long): ByteArray

Reads byteCount bytes from this source and returns them as a byte array

actual abstract fun readByteArray(): ByteArray

Reads all bytes from this source and returns them as a byte array

Caution This may pull a large amount of data into memory, only do this if you are sure the contents fit into memory. Throws IllegalArgumentException if the buffer size exceeds Int.MAX_VALUE.


actual abstract fun readByteArray(byteCount: Long): ByteArray

Reads byteCount bytes from this source and returns them as a byte array