public abstract class ExecNode
extends java.lang.Object
Constructor and Description |
---|
ExecNode() |
Modifier and Type | Method and Description |
---|---|
static java.lang.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,
java.util.Collection<EventBean[]> result,
ExprEvaluatorContext exprEvaluatorContext)
Process single event using the prefill events to compile lookup results.
|
public abstract void process(EventBean lookupEvent, EventBean[] prefillPath, java.util.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 topublic static java.lang.String print(ExecNode execNode)
execNode
- - execution node to print