aggregate Flows
fun <T> aggregateFlows(withScope: CoroutineScope, vararg flows: Flow<T>, internalBufferSize: Int = 64): Flow<T>
Content copied to clipboard
Analog of merge function for Flows. The difference is in the usage of BroadcastChannel in this case