public class FileChannelsAtNioPathKt
| Modifier and Type | Method and Description |
|---|---|
static kotlinx.coroutines.io.ByteReadChannel |
readChannel(java.nio.file.Path $receiver,
long start,
long endInclusive)
Open a read channel for file and launch a coroutine to fill it.
Please note that file reading is blocking so if you are starting it on Dispatchers.Unconfined it may block
your async code
|
static kotlinx.coroutines.io.ByteReadChannel |
readChannel(java.nio.file.Path $receiver)
Open a read channel for file and launch a coroutine to fill it.
Please note that file reading is blocking so if you are starting it on Dispatchers.Unconfined it may block
your async code
|
public static kotlinx.coroutines.io.ByteReadChannel readChannel(java.nio.file.Path $receiver,
long start,
long endInclusive)
Open a read channel for file and launch a coroutine to fill it. Please note that file reading is blocking so if you are starting it on Dispatchers.Unconfined it may block your async code
public static kotlinx.coroutines.io.ByteReadChannel readChannel(java.nio.file.Path $receiver)
Open a read channel for file and launch a coroutine to fill it. Please note that file reading is blocking so if you are starting it on Dispatchers.Unconfined it may block your async code