Upgrade to Coroutines 1.3.0

Closes gh-23535
This commit is contained in:
Sebastien Deleuze
2019-08-28 13:30:40 +02:00
parent 52976246ac
commit 77da40f006
2 changed files with 3 additions and 3 deletions

View File

@@ -349,8 +349,8 @@ public class ReactiveAdapterRegistry {
registry.registerReactiveType(
ReactiveTypeDescriptor.multiValue(kotlinx.coroutines.flow.Flow.class, kotlinx.coroutines.flow.FlowKt::emptyFlow),
source -> kotlinx.coroutines.reactor.FlowKt.asFlux((kotlinx.coroutines.flow.Flow<?>) source),
kotlinx.coroutines.reactive.FlowKt::asFlow
source -> kotlinx.coroutines.reactor.ReactorFlowKt.asFlux((kotlinx.coroutines.flow.Flow<?>) source),
kotlinx.coroutines.reactive.ReactiveFlowKt::asFlow
);
}
}