public class ComposedQueryExecution<T, R> implements QueryExecution<R>:
Lazy execution that applies a plan to another Query.
execution = ComposedQueryExecution<Int, String>(sourceQuery, plan)
| Modifier and Type | Member | Description |
|---|---|---|
| public | ComposedQueryExecutionComposedQueryExecution(source as Query<T>, plan as QueryPlan<T, R>): |
Creates a lazy composed execution. |
| Modifier and Type | Member | Description |
|---|---|---|
| public | executeexecute() as List<R>: |
Executes the inner query and applies the outer plan. |