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

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

There is a newer version: 0.1.16
Show newest version
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