public abstract class ExecNode extends Object
Constructor and Description |
---|
ExecNode() |
Modifier and Type | Method and Description |
---|---|
static String |
print(ExecNode execNode)
Print in readable format the execution strategy.
|
abstract void |
print(IndentWriter writer)
Output the execution strategy.
|
abstract void |
process(EventBean lookupEvent,
EventBean[] prefillPath,
Collection<EventBean[]> result,
ExprEvaluatorContext exprEvaluatorContext)
Process single event using the prefill events to compile lookup results.
|
public abstract void process(EventBean lookupEvent, EventBean[] prefillPath, Collection<EventBean[]> result, ExprEvaluatorContext exprEvaluatorContext)
lookupEvent
- - event to look up for or query forprefillPath
- - set of events currently in the example tuple to serve
as a prototype for result rows.result
- is the list of tuples to add a result row toexprEvaluatorContext
- context for expression evaluationpublic abstract void print(IndentWriter writer)
writer
- to output to