Skip to content

Commit dd4a9dd

Browse files
committed
Remove mentions of ReactorContext from JDK 9 Flow integration doc
1 parent 97f9030 commit dd4a9dd

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

reactive/kotlinx-coroutines-jdk9/src/ReactiveFlow.kt

-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ public fun <T : Any> Publisher<T>.asFlow(): Flow<T> =
2525

2626
/**
2727
* Transforms the given flow to a reactive specification compliant [Publisher].
28-
*
29-
* This function is integrated with `ReactorContext` from `kotlinx-coroutines-reactor` module,
30-
* see its documentation for additional details.
3128
*/
3229
public fun <T : Any> Flow<T>.asPublisher(): Publisher<T> {
3330
val reactivePublisher : org.reactivestreams.Publisher<T> = this.asPublisher<T>()

0 commit comments

Comments
 (0)