You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -26,7 +26,7 @@ suspend fun main() = coroutineScope {
26
26
27
27
*[core](kotlinx-coroutines-core/README.md)— common coroutines across all platforms:
28
28
*[launch] and [async] coroutine builders returning [Job] and [Deferred] light-weight futures with cancellation support;
29
-
*[Dispatchers] object with [Main][Dispatchers.Main] dispatcher for Android/Swing/JavaFx, and [Default][Dispatchers.Default] dispatcher for background coroutines;
29
+
*[Dispatchers] object with [Main][Dispatchers.Main] dispatcher for Android/Swing/JavaFx (which require the corresponding artifacts in runtime) and Darwin (included out of the box), and [Default][Dispatchers.Default] dispatcher for background coroutines;
30
30
*[delay] and [yield] top-level suspending functions;
31
31
*[Flow]— cold asynchronous stream with [flow][_flow] builder and comprehensive operator set ([filter], [map], etc);
32
32
*[Channel], [Mutex], and [Semaphore] communication and synchronization primitives;
@@ -36,7 +36,7 @@ suspend fun main() = coroutineScope {
36
36
*[select] expression support and more.
37
37
*[core/jvm](kotlinx-coroutines-core/jvm/)— additional core features available on Kotlin/JVM:
38
38
*[Dispatchers.IO] dispatcher for blocking coroutines;
39
-
*[Executor.asCoroutineDispatcher][asCoroutineDispatcher] extension, custom thread pools, and more.
39
+
*[Executor.asCoroutineDispatcher][asCoroutineDispatcher] extension, custom thread pools, and more;
40
40
* Integrations with `CompletableFuture` and JVM-specific extensions.
41
41
*[core/js](kotlinx-coroutines-core/js/)— additional core features available on Kotlin/JS:
42
42
* Integration with `Promise` via [Promise.await] and [promise] builder;
@@ -54,7 +54,7 @@ suspend fun main() = coroutineScope {
54
54
* RxJava 2.x ([rxFlowable], [rxSingle], etc), and
55
55
* RxJava 3.x ([rxFlowable], [rxSingle], etc), and
56
56
* Project Reactor ([flux], [mono], etc).
57
-
*[ui](ui/README.md)— modules that provide coroutine dispatchers for various single-threaded UI libraries:
57
+
*[ui](ui/README.md)— modules that provide the [Main][Dispatchers.Main] dispatcher for various single-threaded UI libraries:
58
58
* Android, JavaFX, and Swing.
59
59
*[integration](integration/README.md)— modules that provide integration with various asynchronous callback- and future-based libraries:
60
60
* Guava [ListenableFuture.await], and Google Play Services [Task.await];
@@ -85,7 +85,7 @@ Add dependencies (you can also add other modules that you need):
85
85
<dependency>
86
86
<groupId>org.jetbrains.kotlinx</groupId>
87
87
<artifactId>kotlinx-coroutines-core</artifactId>
88
-
<version>1.7.2</version>
88
+
<version>1.7.3</version>
89
89
</dependency>
90
90
```
91
91
@@ -103,7 +103,7 @@ Add dependencies (you can also add other modules that you need):
(follow the link to get the dependency declaration snippet) and as [`kotlinx-coroutines-core`](https://www.npmjs.com/package/kotlinx-coroutines-core) NPM package.
0 commit comments