AbstractFlowWrapper

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.

Inheritors

Constructors

Link copied to clipboard
constructor(flow: Flow<T>)

Functions

Link copied to clipboard
open suspend override fun collect(collector: FlowCollector<T>)
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>