aboutsummaryrefslogtreecommitdiffstats
path: root/reactive/kotlinx-coroutines-rx2/src/RxConvert.kt
diff options
context:
space:
mode:
authorVsevolod Tolstopyatov <qwwdfsad@gmail.com>2021-07-08 13:47:21 +0300
committerGitHub <noreply@github.com>2021-07-08 13:47:21 +0300
commitf5e87400f4d11be56851a4304aa1a40fa3c09cde (patch)
tree650686dc2c238d2068b995ecda2aff23bca3ee22 /reactive/kotlinx-coroutines-rx2/src/RxConvert.kt
parentc9ab4fd21b900f66336d4d029610643c1b8839ae (diff)
downloadplatform_external_kotlinx.coroutines-f5e87400f4d11be56851a4304aa1a40fa3c09cde.tar.gz
platform_external_kotlinx.coroutines-f5e87400f4d11be56851a4304aa1a40fa3c09cde.tar.bz2
platform_external_kotlinx.coroutines-f5e87400f4d11be56851a4304aa1a40fa3c09cde.zip
General cleanup (#2809)
* Suppress all deprecated signatures from the documentation * Migrate inline classes to value * Get rid of annoying Gradle output when tasks are configured * Opt-in into delicate coroutines API * Get rid of legacy jvm_ir_enabled that was used for pre-release testing of JVM IR compiler * Update README references
Diffstat (limited to 'reactive/kotlinx-coroutines-rx2/src/RxConvert.kt')
-rw-r--r--reactive/kotlinx-coroutines-rx2/src/RxConvert.kt2
1 files changed, 2 insertions, 0 deletions
diff --git a/reactive/kotlinx-coroutines-rx2/src/RxConvert.kt b/reactive/kotlinx-coroutines-rx2/src/RxConvert.kt
index 2aeb994d..497c922c 100644
--- a/reactive/kotlinx-coroutines-rx2/src/RxConvert.kt
+++ b/reactive/kotlinx-coroutines-rx2/src/RxConvert.kt
@@ -149,6 +149,7 @@ public fun <T : Any> ReceiveChannel<T>.asObservable(context: CoroutineContext):
send(t)
}
+/** @suppress **/
@Suppress("UNUSED") // KT-42513
@JvmOverloads // binary compatibility
@JvmName("from")
@@ -156,6 +157,7 @@ public fun <T : Any> ReceiveChannel<T>.asObservable(context: CoroutineContext):
public fun <T: Any> Flow<T>._asFlowable(context: CoroutineContext = EmptyCoroutineContext): Flowable<T> =
asFlowable(context)
+/** @suppress **/
@Suppress("UNUSED") // KT-42513
@JvmOverloads // binary compatibility
@JvmName("from")