1 /* 2 * Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 5 @file:JvmName("FlowKt") 6 7 package kotlinx.coroutines.reactor 8 9 import kotlinx.coroutines.flow.* 10 import reactor.core.publisher.* 11 12 /** @suppress **/ 13 @Deprecated( 14 message = "Replaced in favor of ReactiveFlow extension, please import kotlinx.coroutines.reactor.* instead of kotlinx.coroutines.reactor.FlowKt", 15 level = DeprecationLevel.HIDDEN 16 ) // Compatibility with Spring 5.2-RC 17 @JvmName("asFlux") asFluxDeprecatednull18public fun <T : Any> Flow<T>.asFluxDeprecated(): Flux<T> = asFlux() 19