All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kotlinx.coroutines.io.WriterSession.kt Maven / Gradle / Ivy

There is a newer version: 0.1.16
Show newest version
package kotlinx.coroutines.io

import kotlinx.io.core.*

@ExperimentalIoApi
interface WriterSession {
    fun request(min: Int): IoBuffer?
    fun written(n: Int)
    fun flush()
}

@ExperimentalIoApi
interface WriterSuspendSession : WriterSession {
    suspend fun tryAwait(n: Int)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy