Package-level declarations

Types

Link copied to clipboard
abstract class AbstractFlowWrapper<out T>(flow: Flow<T>) : Flow<T>

A wrapper for Flow that provides a more convenient API for subscribing to the flow when using Flow on native platforms.

Link copied to clipboard
interface Joinable

Has the same meaning as kotlinx.coroutines.Job.join.

Link copied to clipboard
Link copied to clipboard
open class NonNullFlowWrapper<out T : Any> constructor(@ObjCName(name = "_") flow: Flow<T>) : AbstractFlowWrapper<T>

A wrapper for Flow that provides a more convenient API for subscribing to the flow when using Flow on native platforms.

Link copied to clipboard
class NonNullStateFlowWrapper<out T : Any> constructor(@ObjCName(name = "_") flow: StateFlow<T>) : NonNullFlowWrapper<T> , StateFlow<T>

Same as NonNullFlowWrapper but wraps and implements StateFlow and exposes the current value.

Link copied to clipboard
open class NullableFlowWrapper<out T> constructor(@ObjCName(name = "_") flow: Flow<T>) : AbstractFlowWrapper<T>

A wrapper for Flow that provides a more convenient API for subscribing to the flow when using Flow on native platforms.

Link copied to clipboard
class NullableStateFlowWrapper<T> constructor(@ObjCName(name = "_") flow: StateFlow<T>) : NullableFlowWrapper<T> , StateFlow<T>

Same as NullableFlowWrapper but wraps and implements StateFlow and exposes the current value.

Functions

Link copied to clipboard
fun <T> Flow<T>.wrap(): NullableFlowWrapper<T>
fun <T : Any> Flow<T>.wrap(): NonNullFlowWrapper<T>
fun <T> StateFlow<T>.wrap(): NullableStateFlowWrapper<T>
fun <T : Any> StateFlow<T>.wrap(): NonNullStateFlowWrapper<T>