NonNullFlowWrapper

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.

Parameters

T

the type of the flow's values, it is non-nullable.

Inheritors

Constructors

Link copied to clipboard
constructor(@ObjCName(name = "_") flow: Flow<T>)

Functions

Link copied to clipboard
open suspend override fun collect(collector: FlowCollector<T>)
Link copied to clipboard
override fun subscribe(scope: CoroutineScope, onValue: OnValue<T>): JoinableAndCloseable
override fun subscribe(scope: CoroutineScope, onValue: OnValue<T>, onComplete: OnComplete): JoinableAndCloseable
override fun subscribe(scope: CoroutineScope, onValue: OnValue<T>, onError: OnError): JoinableAndCloseable
override fun subscribe(scope: CoroutineScope, onValue: OnValue<T>, onError: OnError, onComplete: OnComplete): JoinableAndCloseable
Link copied to clipboard
fun <T> Flow<T>.wrap(): NullableFlowWrapper<T>
fun <T : Any> Flow<T>.wrap(): NonNullFlowWrapper<T>