kotlinx.coroutines.io.WriterSession.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlinx-coroutines-io-native Show documentation
Show all versions of kotlinx-coroutines-io-native Show documentation
IO support libraries for Kotlin
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