NonNullStateFlowWrapper

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.

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
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>
fun <T> StateFlow<T>.wrap(): NullableStateFlowWrapper<T>
fun <T : Any> StateFlow<T>.wrap(): NonNullStateFlowWrapper<T>