We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97f9030 commit dd4a9ddCopy full SHA for dd4a9dd
reactive/kotlinx-coroutines-jdk9/src/ReactiveFlow.kt
@@ -25,9 +25,6 @@ public fun <T : Any> Publisher<T>.asFlow(): Flow<T> =
25
26
/**
27
* 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.
31
*/
32
public fun <T : Any> Flow<T>.asPublisher(): Publisher<T> {
33
val reactivePublisher : org.reactivestreams.Publisher<T> = this.asPublisher<T>()
0 commit comments