• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package kotlinx.coroutines
2 
3 /**
4  * A runnable task for [CoroutineDispatcher.dispatch].
5  *
6  * It is a typealias for [java.lang.Runnable], which is widely used in Java APIs.
7  * This makes it possible to directly pass the argument of [CoroutineDispatcher.dispatch]
8  * to the underlying Java implementation without any additional wrapping.
9  */
10 public actual typealias Runnable = java.lang.Runnable
11