aRead

suspend fun AsynchronousFileChannel.aRead(
    buf: ByteBuffer,
    position: Long
): Int

Performs AsynchronousFileChannel.read without blocking a thread and resumes when asynchronous operation completes. This suspending function is cancellable. If the Job of the current coroutine is cancelled or completed while this suspending function is waiting, this function closes the underlying channel and immediately resumes with CancellationException.