waitUntilFalse

suspend fun waitUntilFalse(timeoutDuration: Duration = Duration.INFINITE): Boolean

Suspends until the value becomes false or the timeout expires.

Return

true if the value became false before the timeout, false if the timeout expired.

Parameters

timeoutDuration

the maximum duration to wait. Defaults to Duration.INFINITE.