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

jvmMain.Runnable.kt Maven / Gradle / Ivy

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