NullableStateFlowWrapper

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.

Constructors

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

Properties

Link copied to clipboard
open override val replayCache: List<T>
Link copied to clipboard
open override val value: T

Functions

Link copied to clipboard
open suspend override fun collect(collector: FlowCollector<T>): Nothing
Link copied to clipboard
open fun subscribe(scope: CoroutineScope, onValue: OnValue<T>): JoinableAndCloseable
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
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>