File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ This directory contains modules that provide integration with various asynchrono
44
55## Modules
66
7- * [ kotlinx-coroutines-jdk8] ( kotlinx-coroutines-jdk8/README.md ) -- extensions for JDK8 ` CompletableFuture ` (Android API level 24).
8- * [ kotlinx-coroutines-nio] ( kotlinx-coroutines-nio/README.md ) -- extensions for asynchronous IO on JDK7+ (Android O Preview).
7+ * [ kotlinx-coroutines-jdk8] ( kotlinx-coroutines-jdk8/README.md ) -- integration with JDK8 ` CompletableFuture ` (Android API level 24).
8+ * [ kotlinx-coroutines-nio] ( kotlinx-coroutines-nio/README.md ) -- integration with asynchronous IO on JDK7+ (Android O Preview).
99* [ kotlinx-coroutines-guava] ( kotlinx-coroutines-guava/README.md ) -- integration with Guava [ ListenableFuture] ( https://github.com/google/guava/wiki/ListenableFutureExplained ) .
1010
1111## Contributing
Original file line number Diff line number Diff line change 11# Module kotlinx-coroutines-jdk8
22
3- Additional libraries for JDK8 (or Android API level 24).
3+ Integration with JDK8 [ ` CompletableFuture ` ] [ java.util.concurrent.CompletableFuture ] ( Android API level 24).
44
55Coroutine builders:
66
@@ -47,15 +47,15 @@ that makes it especially bad choice for coroutine-based Kotlin code.
4747
4848# Package kotlinx.coroutines.experimental.future
4949
50- Additional libraries for JDK8 [ CompletableFuture] [ java.util.concurrent.CompletableFuture ] .
50+ Integration with JDK8 [ ` CompletableFuture ` ] [ java.util.concurrent.CompletableFuture ] (Android API level 24) .
5151
5252<!-- - MODULE kotlinx-coroutines-core -->
5353<!-- - INDEX kotlinx.coroutines.experimental -->
5454[ CoroutineScope ] : https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.experimental/-coroutine-scope/index.html
5555<!-- - MODULE kotlinx-coroutines-jdk8 -->
5656<!-- - INDEX kotlinx.coroutines.experimental.future -->
57- [ future ] : https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-jdk8/kotlinx.coroutines.experimental.future/future.html
5857[ java.util.concurrent.CompletableFuture ] : https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-jdk8/kotlinx.coroutines.experimental.future/java.util.concurrent.-completable-future/index.html
58+ [ future ] : https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-jdk8/kotlinx.coroutines.experimental.future/future.html
5959[ java.util.concurrent.CompletionStage.await ] : https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-jdk8/kotlinx.coroutines.experimental.future/java.util.concurrent.-completion-stage/await.html
6060[ java.util.concurrent.CompletableFuture.await ] : https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-jdk8/kotlinx.coroutines.experimental.future/java.util.concurrent.-completable-future/await.html
6161[ kotlinx.coroutines.experimental.Deferred.asCompletableFuture ] : https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-jdk8/kotlinx.coroutines.experimental.future/kotlinx.coroutines.experimental.-deferred/as-completable-future.html
Original file line number Diff line number Diff line change 11# Module kotlinx-coroutines-nio
22
3- Extensions for asynchronous IO on JDK7+.
3+ Integration with asynchronous IO on JDK7+ (Android O Preview) .
44
55# Package kotlinx.coroutines.experimental.nio
66
7- Extensions for asynchronous IO on JDK7+.
7+ Integration with asynchronous IO on JDK7+ (Android O Preview) .
88
99* ` AsynchronousFileChannel ` extensions ` aLock ` , ` aRead ` , and ` aWrite ` .
1010* ` AsynchronousServerSocketChannel ` extension ` aAccept ` .
Original file line number Diff line number Diff line change @@ -18,6 +18,6 @@ Library support for Kotlin coroutines. This reference is a companion to
1818[ kotlinx-coroutines-android] ( kotlinx-coroutines-android ) | ` UI ` context for Android applications
1919[ kotlinx-coroutines-javafx] ( kotlinx-coroutines-javafx ) | ` JavaFx ` context for JavaFX UI applications
2020[ kotlinx-coroutines-swing] ( kotlinx-coroutines-swing ) | ` Swing ` context for Swing UI applications
21- [ kotlinx-coroutines-jdk8] ( kotlinx-coroutines-jdk8 ) | Extensions for JDK8 ` CompletableFuture ` (Android API level 24)
22- [ kotlinx-coroutines-nio] ( kotlinx-coroutines-nio ) | Extensions for asynchronous IO on JDK7+ (Android O Preview)
21+ [ kotlinx-coroutines-jdk8] ( kotlinx-coroutines-jdk8 ) | Integration with JDK8 ` CompletableFuture ` (Android API level 24)
22+ [ kotlinx-coroutines-nio] ( kotlinx-coroutines-nio ) | Integration with asynchronous IO on JDK7+ (Android O Preview)
2323[ kotlinx-coroutines-guava] ( kotlinx-coroutines-guava ) | Integration with Guava [ ListenableFuture] ( https://github.com/google/guava/wiki/ListenableFutureExplained )
You can’t perform that action at this time.
0 commit comments