File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ GlobalScope.launch {
32
32
* [ core] ( core/README.md ) &mdash ; Kotlin/JVM implementation of common coroutines with additional features:
33
33
* ` Dispatchers.IO ` dispatcher for blocking coroutines;
34
34
* ` Executor.asCoroutineDispatcher() ` extension, custom thread pools, and more.
35
- * [ test] ( core/README.md ) &mdash ; test utilities for coroutines, currently with one feature:
36
- * ` MainDispatcherInjector.inject() ` to override ` Dispatchers.Main ` in tests.
35
+ * [ test] ( core/README.md ) &mdash ; test utilities for coroutines
36
+ * ` Dispatchers.setMain ` to override ` Dispatchers.Main ` in tests.
37
37
* [ debug] ( core/README.md ) &mdash ; debug utilities for coroutines.
38
38
* ` DebugProbes ` API to probe, keep track of, print and dump active coroutines.
39
39
* [ js] ( js/README.md ) &mdash ; Kotlin/JS implementation of common coroutines with ` Promise ` support.
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ Module name below corresponds to the artifact name in Maven/Gradle.
7
7
8
8
* [ kotlinx-coroutines-core] ( kotlinx-coroutines-core/README.md ) &mdash ; core coroutine builders and synchronization primitives.
9
9
* [ kotlinx-coroutines-debug] ( kotlinx-coroutines-debug/README.md ) &mdash ; coroutines debug utilities.
10
- * [ kotlinx-coroutines-test] ( kotlinx-coroutines-test/README.md ) &mdash ; coroutines test utilities such as settable Main dispatcher .
10
+ * [ kotlinx-coroutines-test] ( kotlinx-coroutines-test/README.md ) &mdash ; coroutines test utilities.
11
11
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ of coroutines hierarchy referenced by a [Job] instance using [DebugProbes.printH
16
16
### Using as JVM agent
17
17
18
18
It is possible to use this module as a standalone JVM agent to enable debug probes on the application startup.
19
- You can run your application with an additional argument: ` -javaagent:kotlinx-coroutines-debug-1.1.0 .jar ` .
19
+ You can run your application with an additional argument: ` -javaagent:kotlinx-coroutines-debug-1.0.1 .jar ` .
20
20
Additionally, on Linux and Mac OS X you can use ` kill -5 $pid ` command in order to force your application to print all alive coroutines.
21
21
22
22
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Test utilities for `kotlinx.coroutines`. Provides `Dispatchers.setMain` to overr
7
7
Add ` kotlinx-coroutines-test ` to your project test dependencies:
8
8
```
9
9
dependencies {
10
- testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.1.0 '
10
+ testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.0.1 '
11
11
}
12
12
```
13
13
You can’t perform that action at this time.
0 commit comments