We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 584b3c4 commit 0d26d6cCopy full SHA for 0d26d6c
kotlinx-coroutines-test/common/src/TestDispatcher.kt
@@ -10,6 +10,11 @@ import kotlin.jvm.*
10
11
/**
12
* A test dispatcher that can interface with a [TestCoroutineScheduler].
13
+ *
14
+ * The available implementations are:
15
+ * * [StandardTestDispatcher] is a dispatcher that places new tasks into a queue.
16
+ * * [UnconfinedTestDispatcher] is a dispatcher that behaves like [Dispatchers.Unconfined] while allowing to control
17
+ * the virtual time.
18
*/
19
@ExperimentalCoroutinesApi
20
public abstract class TestDispatcher internal constructor(): CoroutineDispatcher(), Delay {
0 commit comments