aboutsummaryrefslogtreecommitdiff
path: root/kotlinx-coroutines-core/common/src/Runnable.common.kt
blob: 692c700b5025d526f31dcdcbfc3624c73a85a473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

package kotlinx.coroutines

/**
 * A runnable task for [CoroutineDispatcher.dispatch].
 */
public expect interface Runnable {
    /**
     * @suppress
     */
    public fun run()
}

/**
 * Creates [Runnable] task instance.
 */
@Suppress("FunctionName")
public expect inline fun Runnable(crossinline block: () -> Unit): Runnable