abstract fun request(skip: Int, atLeast: Int): ByteBuffer?
Request byte buffer range skipping skip bytes and atLeast bytes length
Return
byte buffer for the requested range or null if it is impossible to provide such a buffer
There are the following reasons for this function to return null
:
skip + atLeast
bytes available)