execute

suspend fun Flow<ViewFlowItem>.execute(): ViewResult

Collects a View Flow into a ViewResult. Should only be called if the View results are expected to fit in memory.


inline suspend fun Flow<ViewFlowItem>.execute(crossinline rowAction: suspend (ViewRow) -> Unit): ViewMetadata

Collects a View Flow, passing each result row to the given lambda. Returns metadata about the View.