asFlow
Creates a cold flow that produces a single value from the given functional type.
Creates a cold flow that produces a single value from the given functional type.
Example of usage:
suspend fun remoteCall(): R = ...
fun remoteCallFlow(): Flow<R> = ::remoteCall.asFlow()
Creates a cold flow that produces values from the given iterable.
Creates a cold flow that produces values from the given iterator.
Creates a cold flow that produces values from the given sequence.
Creates a cold flow that produces values from the given array. The flow being cold means that the array components are read every time a terminal operator is applied to the resulting flow.
Creates a cold flow that produces values from the array. The flow being cold means that the array components are read every time a terminal operator is applied to the resulting flow.
Creates a flow that produces values from the range.
Represents the given broadcast channel as a hot flow. Every flow collector will trigger a new broadcast channel subscription.
Cancellation semantics
Flow consumer is cancelled when the original channel is cancelled.
Flow consumer completes normally when the original channel completes (~is closed) normally.
If the flow consumer fails with an exception, subscription is cancelled.