Package-level declarations

Functions

Link copied to clipboard
fun <T> LiveData<T>.observeForeverInMain(observer: Observer<in T>)

在主线程中进行订阅通知

Link copied to clipboard
inline suspend fun <T> Flow<T>.toLiveData(): LiveData<T>

Flow转LiveData

inline fun <T> Flow<T>.toLiveData(scope: CoroutineScope): LiveData<T>