Package-level declarations

Types

Link copied to clipboard
class ByteArrayDequeSyncStream(val deque: ByteArrayDeque) : SyncStreamBase
Link copied to clipboard
class CharReaderFromSyncStream(val stream: SyncStream, val charset: Charset, val chunkSize: Int = DEFAULT_CHUNK_SIZE) : CharReader
Link copied to clipboard
class FileSyncStreamBase(val file: ERROR CLASS: Symbol not found for java.io.File, val mode: String = "r") : SyncStreamBase

Functions

Link copied to clipboard
fun AsyncStream.asVfsFile(name: String = "unknown.bin"): VfsFile
Link copied to clipboard
fun ERROR CLASS: Symbol not found for File.openSync(mode: String = "r"): SyncStream
Link copied to clipboard
fun ERROR CLASS: Symbol not found for InputStream.toAsync(context: CoroutineContext? = Dispatchers.IO, length: Long? = null): AsyncInputStream
Link copied to clipboard
fun SyncStream.toCharReader(charset: Charset, chunkSize: Int = 1024): CharReader
fun ByteArray.toCharReader(charset: Charset, chunkSize: Int = 1024): CharReader
Link copied to clipboard
fun SyncStream.toInputStream(): ERROR CLASS: Symbol not found for InputStream
Link copied to clipboard
fun ERROR CLASS: Symbol not found for InputStream.toSyncInputStream(): SyncInputStream
Link copied to clipboard
fun ERROR CLASS: Symbol not found for OutputStream.toSyncOutputStream(): SyncOutputStream
Link copied to clipboard
fun ByteArrayDeque.toSyncStream(): SyncStream
fun ERROR CLASS: Symbol not found for InputStream.toSyncStream(): SyncInputStream
Link copied to clipboard
suspend fun AsyncOutputStream.writeFile(source: VfsFile): Long