NullableFlowWrapper
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.
Parameters
T
the type of the flow's values, it is nullable.
Inheritors
Functions
Link copied to clipboard
open fun subscribe(scope: CoroutineScope, onValue: OnValue<T>, onComplete: OnComplete): JoinableAndCloseable
open fun subscribe(scope: CoroutineScope, onValue: OnValue<T>, onError: OnError): JoinableAndCloseable
open fun subscribe(scope: CoroutineScope, onValue: OnValue<T>, onError: OnError, onComplete: OnComplete): JoinableAndCloseable