Reactive Publisher openSubscription 将来会过时,我该如何解决?
Reactive Publisher openSubscription become obsolete in the future, how should I fix it?
我使用了 Rx Publisher 并尝试在 android 应用程序中将发布者转换为协程流。但是我收到了以下有关所用函数的消息 openSubscription()
但是我找不到该函数的任何替代品。
This declaration is experimental and its usage should be marked with '@kotlinx.coroutines.ObsoleteCoroutinesApi' or '@OptIn(kotlinx.coroutines.ObsoleteCoroutinesApi::class)'
publisher.openSubscription().receiveAsFlow()
感谢任何评论或建议
文档说明了 openSubscription()
的替代方法,使用 asFlow()
检查 docs here
我使用了 Rx Publisher 并尝试在 android 应用程序中将发布者转换为协程流。但是我收到了以下有关所用函数的消息 openSubscription()
但是我找不到该函数的任何替代品。
This declaration is experimental and its usage should be marked with '@kotlinx.coroutines.ObsoleteCoroutinesApi' or '@OptIn(kotlinx.coroutines.ObsoleteCoroutinesApi::class)'
publisher.openSubscription().receiveAsFlow()
感谢任何评论或建议
文档说明了 openSubscription()
的替代方法,使用 asFlow()
检查 docs here