Package-level declarations

Functions

Link copied to clipboard
fun <T> Flow<T>.observeLatestWhenCreated(lifecycleOwner: LifecycleOwner, action: suspend (value: T) -> Unit): Job
Link copied to clipboard
fun <T> Flow<T>.observeLatestWhenStarted(lifecycleOwner: LifecycleOwner, action: suspend (value: T) -> Unit): Job
Link copied to clipboard
fun <T> Flow<T>.observeWhenCreated(lifecycleOwner: LifecycleOwner, action: FlowCollector<T>): Job
Link copied to clipboard
fun <T> Flow<T>.observeWhenResumed(lifecycleOwner: LifecycleOwner, action: FlowCollector<T>): Job
Link copied to clipboard
fun <T> Flow<T>.observeWhenStarted(lifecycleOwner: LifecycleOwner, action: FlowCollector<T>): Job
Link copied to clipboard
fun repeatWhen(state: Lifecycle.State, lifecycleOwner: LifecycleOwner, block: suspend CoroutineScope.() -> Unit): Job