Uses of Class
se.liu.ida.hefquin.engine.queryplan.executable.impl.ExecPlanTaskInputException
Packages that use ExecPlanTaskInputException
Package
Description
-
Uses of ExecPlanTaskInputException in se.liu.ida.hefquin.engine.queryplan.executable.impl
Methods in se.liu.ida.hefquin.engine.queryplan.executable.impl that throw ExecPlanTaskInputExceptionModifier and TypeMethodDescriptionExecPlanTask.getNextIntermediateResultBlock()
Returns either the next intermediate result block produced by this task ornull
if all these blocks have been returned already to earlier calls of this function. -
Uses of ExecPlanTaskInputException in se.liu.ida.hefquin.engine.queryplan.executable.impl.pullbased
Methods in se.liu.ida.hefquin.engine.queryplan.executable.impl.pullbased that throw ExecPlanTaskInputExceptionModifier and TypeMethodDescriptionfinal IntermediateResultBlock
PullBasedExecPlanTaskBase.getNextIntermediateResultBlock()
protected abstract IntermediateResultBlock
PullBasedExecPlanTaskBase.produceNextIntermediateResultBlock()
Produces and returns a newIntermediateResultBlock
.protected IntermediateResultBlock
PullBasedExecPlanTaskForBinaryOperator.produceNextIntermediateResultBlock()
protected IntermediateResultBlock
PullBasedExecPlanTaskForUnaryOperator.produceNextIntermediateResultBlock()
-
Uses of ExecPlanTaskInputException in se.liu.ida.hefquin.engine.queryplan.executable.impl.pushbased
Methods in se.liu.ida.hefquin.engine.queryplan.executable.impl.pushbased that throw ExecPlanTaskInputExceptionModifier and TypeMethodDescriptionfinal IntermediateResultBlock
PushBasedExecPlanTaskBase.getNextIntermediateResultBlock()
protected abstract void
PushBasedExecPlanTaskBase.produceOutput
(IntermediateResultElementSink sink) protected void
PushBasedExecPlanTaskForBinaryOperator.produceOutput
(IntermediateResultElementSink sink) protected void
PushBasedExecPlanTaskForNaryOperator.produceOutput
(IntermediateResultElementSink sink) protected void
PushBasedExecPlanTaskForNullaryOperator.produceOutput
(IntermediateResultElementSink sink) protected void
PushBasedExecPlanTaskForUnaryOperator.produceOutput
(IntermediateResultElementSink sink) protected void
PushBasedExecPlanTaskForNaryOperator.produceOutputByConsumingAllInputsInParallel
(IntermediateResultElementSink sink) Consumes the complete i-th input first (and pushes that input to the operatorPushBasedExecPlanTaskForNaryOperator.op
), before moving on to the (i+1)-th input.protected void
PushBasedExecPlanTaskForBinaryOperator.produceOutputByConsumingBothInputsInParallel
(IntermediateResultElementSink sink) Aims to consume both inputs in parallel.protected void
PushBasedExecPlanTaskForBinaryOperator.produceOutputByConsumingInput1First
(IntermediateResultElementSink sink) Consumes the complete child 1 input first (and pushes that input to the operatorPushBasedExecPlanTaskForBinaryOperator.op
), before moving on to the input from child 2.protected void
PushBasedExecPlanTaskForNaryOperator.produceOutputByConsumingInputsOneAfterAnother
(IntermediateResultElementSink sink) Consumes the complete i-th input first (and pushes that input to the operatorPushBasedExecPlanTaskForNaryOperator.op
), before moving on to the (i+1)-th input.