• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 @file:JvmName("FlowKt")
2 
3 package kotlinx.coroutines.reactor
4 
5 import kotlinx.coroutines.flow.*
6 import reactor.core.publisher.*
7 
8 /** @suppress **/
9 @Deprecated(
10     message = "Replaced in favor of ReactiveFlow extension, please import kotlinx.coroutines.reactor.* instead of kotlinx.coroutines.reactor.FlowKt",
11     level = DeprecationLevel.HIDDEN
12 ) // Compatibility with Spring 5.2-RC
13 @JvmName("asFlux")
asFluxDeprecatednull14 public fun <T : Any> Flow<T>.asFluxDeprecated(): Flux<T> = asFlux()
15