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

jvmTest.io.mths.swing.flow.util.MainThreadYielding.kt Maven / Gradle / Ivy

The newest version!
package io.mths.swing.flow.util

import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.withContext
import kotlinx.coroutines.yield

internal suspend fun yieldMainThread() {
    withContext(Dispatchers.Main) {
        yield()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy