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
4
4
5
5
## Modules
6
6
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).
9
9
* [ kotlinx-coroutines-guava] ( kotlinx-coroutines-guava/README.md ) -- integration with Guava [ ListenableFuture] ( https://github.com/google/guava/wiki/ListenableFutureExplained ) .
10
10
11
11
## Contributing
Original file line number Diff line number Diff line change 1
1
# Module kotlinx-coroutines-jdk8
2
2
3
- Additional libraries for JDK8 (or Android API level 24).
3
+ Integration with JDK8 [ ` CompletableFuture ` ] [ java.util.concurrent.CompletableFuture ] ( Android API level 24).
4
4
5
5
Coroutine builders:
6
6
@@ -47,15 +47,15 @@ that makes it especially bad choice for coroutine-based Kotlin code.
47
47
48
48
# Package kotlinx.coroutines.experimental.future
49
49
50
- Additional libraries for JDK8 [ CompletableFuture] [ java.util.concurrent.CompletableFuture ] .
50
+ Integration with JDK8 [ ` CompletableFuture ` ] [ java.util.concurrent.CompletableFuture ] (Android API level 24) .
51
51
52
52
<!-- - MODULE kotlinx-coroutines-core -->
53
53
<!-- - INDEX kotlinx.coroutines.experimental -->
54
54
[ CoroutineScope ] : https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.experimental/-coroutine-scope/index.html
55
55
<!-- - MODULE kotlinx-coroutines-jdk8 -->
56
56
<!-- - INDEX kotlinx.coroutines.experimental.future -->
57
- [ future ] : https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-jdk8/kotlinx.coroutines.experimental.future/future.html
58
57
[ 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
59
59
[ 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
60
60
[ 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
61
61
[ 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 1
1
# Module kotlinx-coroutines-nio
2
2
3
- Extensions for asynchronous IO on JDK7+.
3
+ Integration with asynchronous IO on JDK7+ (Android O Preview) .
4
4
5
5
# Package kotlinx.coroutines.experimental.nio
6
6
7
- Extensions for asynchronous IO on JDK7+.
7
+ Integration with asynchronous IO on JDK7+ (Android O Preview) .
8
8
9
9
* ` AsynchronousFileChannel ` extensions ` aLock ` , ` aRead ` , and ` aWrite ` .
10
10
* ` 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
18
18
[ kotlinx-coroutines-android] ( kotlinx-coroutines-android ) | ` UI ` context for Android applications
19
19
[ kotlinx-coroutines-javafx] ( kotlinx-coroutines-javafx ) | ` JavaFx ` context for JavaFX UI applications
20
20
[ 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)
23
23
[ 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