
jvmMain.Runnable.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlinx-coroutines-core-jvm Show documentation
Show all versions of kotlinx-coroutines-core-jvm Show documentation
Coroutines support libraries for Kotlin
The newest version!
package kotlinx.coroutines
/**
* A runnable task for [CoroutineDispatcher.dispatch].
*
* It is a typealias for [java.lang.Runnable], which is widely used in Java APIs.
* This makes it possible to directly pass the argument of [CoroutineDispatcher.dispatch]
* to the underlying Java implementation without any additional wrapping.
*/
public actual typealias Runnable = java.lang.Runnable
© 2015 - 2025 Weber Informatics LLC | Privacy Policy