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
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -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;
@@ -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];
0 commit comments