flattenConcatConcurrent

fun <T> Flow<Flow<T>>.flattenConcatConcurrent(): Flow<T>

The result is the same as .flattenConcat(), but each Flow is collected in a separate coroutine. This allows the bulk query to collect all low level request into bigger batches.