ComposedQueryExecution
classin packageklyn.data.internal
public class ComposedQueryExecution<T, R> implements QueryExecution<R>:
ComposedQueryExecution
All Implemented Interfaces: QueryExecution

Lazy execution that applies a plan to another Query.

Example
execution = ComposedQueryExecution<Int, String>(sourceQuery, plan)
Constructors
Modifier and Type Member Description
public ComposedQueryExecution
ComposedQueryExecution(source as Query<T>, plan as QueryPlan<T, R>):
Creates a lazy composed execution.
Methods
Modifier and Type Member Description
public execute
execute() as List<R>:
Executes the inner query and applies the outer plan.
Inherited Methods
methodInherited Methods from QueryExecution: execute