AsyncFlow

class AsyncFlow<T> : Flow<T>

Functions

collect
Link copied to clipboard
common
open suspend override fun collect(collector: FlowCollector<T>)
equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
toString
Link copied to clipboard
common
open fun toString(): String

Extensions

collect
Link copied to clipboard
common
suspend fun <T> AsyncFlow<T>.collect(concurrency: Int, collector: FlowCollector<T>)
inline suspend fun <T> AsyncFlow<T>.collect(concurrency: Int, crossinline action: suspend (T) -> Unit)
map
Link copied to clipboard
common
fun <T, R> AsyncFlow<T>.map(action: (T) -> R): AsyncFlow<R>