kotlinx.coroutines.io.Condition.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
internal expect class Condition(predicate: () -> Boolean) {
fun check(): Boolean
suspend fun await()
suspend fun await(block: () -> Unit)
fun signal()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy