1 /* 2 * Copyright 2016-2020 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 @Deprecated( 13 message = "Replaced in favor of ReactiveFlow extension, please import kotlinx.coroutines.reactor.* instead of kotlinx.coroutines.reactor.FlowKt", 14 level = DeprecationLevel.ERROR 15 ) 16 @JvmName("asFlux") asFluxDeprecatednull17public fun <T : Any> Flow<T>.asFluxDeprecated(): Flux<T> = asFlux() 18