Uses of Interface
se.liu.ida.hefquin.engine.queryplan.executable.impl.ExecPlanTask
Packages that use ExecPlanTask
Package
Description
-
Uses of ExecPlanTask in se.liu.ida.hefquin.engine.queryplan.executable.impl
Classes in se.liu.ida.hefquin.engine.queryplan.executable.impl that implement ExecPlanTaskFields in se.liu.ida.hefquin.engine.queryplan.executable.impl with type parameters of type ExecPlanTaskModifier and TypeFieldDescriptionprotected final LinkedList<ExecPlanTask>
TaskBasedExecutablePlanImpl.tasks
Constructor parameters in se.liu.ida.hefquin.engine.queryplan.executable.impl with type arguments of type ExecPlanTaskModifierConstructorDescription -
Uses of ExecPlanTask in se.liu.ida.hefquin.engine.queryplan.executable.impl.pullbased
Classes in se.liu.ida.hefquin.engine.queryplan.executable.impl.pullbased that implement ExecPlanTaskModifier and TypeClassDescriptionclass
Pull-based implementation ofExecPlanTask
.class
class
class
Fields in se.liu.ida.hefquin.engine.queryplan.executable.impl.pullbased declared as ExecPlanTaskModifier and TypeFieldDescriptionprotected final ExecPlanTask
PullBasedExecPlanTaskForUnaryOperator.input
protected final ExecPlanTask
PullBasedExecPlanTaskForBinaryOperator.input1
protected final ExecPlanTask
PullBasedExecPlanTaskForBinaryOperator.input2
Constructors in se.liu.ida.hefquin.engine.queryplan.executable.impl.pullbased with parameters of type ExecPlanTaskModifierConstructorDescriptionPullBasedExecPlanTaskForBinaryOperator
(BinaryExecutableOp op, ExecPlanTask input1, ExecPlanTask input2, ExecutionContext execCxt, int minimumBlockSize) PullBasedExecPlanTaskForUnaryOperator
(UnaryExecutableOp op, ExecPlanTask input, ExecutionContext execCxt, int minimumBlockSize) -
Uses of ExecPlanTask in se.liu.ida.hefquin.engine.queryplan.executable.impl.pushbased
Subinterfaces of ExecPlanTask in se.liu.ida.hefquin.engine.queryplan.executable.impl.pushbasedClasses in se.liu.ida.hefquin.engine.queryplan.executable.impl.pushbased that implement ExecPlanTaskModifier and TypeClassDescriptionclass
class
Push-based implementation ofExecPlanTask
.class
class
class
class
Fields in se.liu.ida.hefquin.engine.queryplan.executable.impl.pushbased declared as ExecPlanTaskModifier and TypeFieldDescriptionprotected final ExecPlanTask
PushBasedExecPlanTaskForUnaryOperator.input
protected final ExecPlanTask
PushBasedExecPlanTaskForBinaryOperator.input1
protected final ExecPlanTask
PushBasedExecPlanTaskForBinaryOperator.input2
protected final ExecPlanTask[]
PushBasedExecPlanTaskForNaryOperator.inputs
Methods in se.liu.ida.hefquin.engine.queryplan.executable.impl.pushbased that return ExecPlanTaskModifier and TypeMethodDescriptionConnectorForAdditionalConsumer.addConnectorForAdditionalConsumer
(int preferredMinimumBlockSize) PushBasedExecPlanTask.addConnectorForAdditionalConsumer
(int preferredMinimumBlockSize) PushBasedExecPlanTaskBase.addConnectorForAdditionalConsumer
(int preferredMinimumBlockSize) Constructors in se.liu.ida.hefquin.engine.queryplan.executable.impl.pushbased with parameters of type ExecPlanTaskModifierConstructorDescriptionPushBasedExecPlanTaskForBinaryOperator
(BinaryExecutableOp op, ExecPlanTask input1, ExecPlanTask input2, ExecutionContext execCxt, int minimumBlockSize) PushBasedExecPlanTaskForNaryOperator
(NaryExecutableOp op, ExecPlanTask[] inputs, ExecutionContext execCxt, int minimumBlockSize) PushBasedExecPlanTaskForUnaryOperator
(UnaryExecutableOp op, ExecPlanTask input, ExecutionContext execCxt, int minimumBlockSize) -
Uses of ExecPlanTask in se.liu.ida.hefquin.engine.queryproc.impl.compiler
Fields in se.liu.ida.hefquin.engine.queryproc.impl.compiler with type parameters of type ExecPlanTaskModifier and TypeFieldDescriptionprotected final Map<PhysicalPlan,
ExecPlanTask> PushBasedQueryPlanCompilerImpl.Worker.convertedSubPlans
Methods in se.liu.ida.hefquin.engine.queryproc.impl.compiler that return ExecPlanTaskModifier and TypeMethodDescriptionprotected ExecPlanTask
TaskBasedQueryPlanCompilerBase.Worker._createTasks
(PhysicalPlan qep, LinkedList<ExecPlanTask> tasks, int preferredOutputBlockSize, ExecutionContext execCxt) protected ExecPlanTask
PullBasedQueryPlanCompilerImpl.createTaskForBinaryExecOp
(BinaryExecutableOp op, ExecPlanTask childTask1, ExecPlanTask childTask2, ExecutionContext execCxt, int preferredOutputBlockSize) protected abstract ExecPlanTask
TaskBasedQueryPlanCompilerBase.createTaskForBinaryExecOp
(BinaryExecutableOp op, ExecPlanTask childTask1, ExecPlanTask childTask2, ExecutionContext execCxt, int preferredOutputBlockSize) protected ExecPlanTask
PullBasedQueryPlanCompilerImpl.createTaskForNaryExecOp
(NaryExecutableOp op, ExecPlanTask[] childTasks, ExecutionContext execCxt, int preferredOutputBlockSize) protected ExecPlanTask
PushBasedQueryPlanCompilerImpl.createTaskForNaryExecOp
(NaryExecutableOp op, ExecPlanTask[] childTasks, ExecutionContext execCxt, int preferredOutputBlockSize) protected abstract ExecPlanTask
TaskBasedQueryPlanCompilerBase.createTaskForNaryExecOp
(NaryExecutableOp op, ExecPlanTask[] childTasks, ExecutionContext execCxt, int preferredOutputBlockSize) protected ExecPlanTask
PullBasedQueryPlanCompilerImpl.createTaskForNullaryExecOp
(NullaryExecutableOp op, ExecutionContext execCxt, int preferredOutputBlockSize) protected abstract ExecPlanTask
TaskBasedQueryPlanCompilerBase.createTaskForNullaryExecOp
(NullaryExecutableOp op, ExecutionContext execCxt, int preferredOutputBlockSize) protected ExecPlanTask
PullBasedQueryPlanCompilerImpl.createTaskForUnaryExecOp
(UnaryExecutableOp op, ExecPlanTask childTask, ExecutionContext execCxt, int preferredOutputBlockSize) protected abstract ExecPlanTask
TaskBasedQueryPlanCompilerBase.createTaskForUnaryExecOp
(UnaryExecutableOp op, ExecPlanTask childTask, ExecutionContext execCxt, int preferredOutputBlockSize) Methods in se.liu.ida.hefquin.engine.queryproc.impl.compiler that return types with arguments of type ExecPlanTaskModifier and TypeMethodDescriptionprotected LinkedList<ExecPlanTask>
PushBasedQueryPlanCompilerImpl.createTasks
(PhysicalPlan qep, ExecutionContext execCxt) protected LinkedList<ExecPlanTask>
TaskBasedQueryPlanCompilerBase.createTasks
(PhysicalPlan qep, ExecutionContext execCxt) Methods in se.liu.ida.hefquin.engine.queryproc.impl.compiler with parameters of type ExecPlanTaskModifier and TypeMethodDescriptionprotected ExecPlanTask
PullBasedQueryPlanCompilerImpl.createTaskForBinaryExecOp
(BinaryExecutableOp op, ExecPlanTask childTask1, ExecPlanTask childTask2, ExecutionContext execCxt, int preferredOutputBlockSize) protected PushBasedExecPlanTask
PushBasedQueryPlanCompilerImpl.createTaskForBinaryExecOp
(BinaryExecutableOp op, ExecPlanTask childTask1, ExecPlanTask childTask2, ExecutionContext execCxt, int preferredOutputBlockSize) protected abstract ExecPlanTask
TaskBasedQueryPlanCompilerBase.createTaskForBinaryExecOp
(BinaryExecutableOp op, ExecPlanTask childTask1, ExecPlanTask childTask2, ExecutionContext execCxt, int preferredOutputBlockSize) protected ExecPlanTask
PullBasedQueryPlanCompilerImpl.createTaskForNaryExecOp
(NaryExecutableOp op, ExecPlanTask[] childTasks, ExecutionContext execCxt, int preferredOutputBlockSize) protected ExecPlanTask
PushBasedQueryPlanCompilerImpl.createTaskForNaryExecOp
(NaryExecutableOp op, ExecPlanTask[] childTasks, ExecutionContext execCxt, int preferredOutputBlockSize) protected abstract ExecPlanTask
TaskBasedQueryPlanCompilerBase.createTaskForNaryExecOp
(NaryExecutableOp op, ExecPlanTask[] childTasks, ExecutionContext execCxt, int preferredOutputBlockSize) protected ExecPlanTask
PullBasedQueryPlanCompilerImpl.createTaskForUnaryExecOp
(UnaryExecutableOp op, ExecPlanTask childTask, ExecutionContext execCxt, int preferredOutputBlockSize) protected PushBasedExecPlanTask
PushBasedQueryPlanCompilerImpl.createTaskForUnaryExecOp
(UnaryExecutableOp op, ExecPlanTask childTask, ExecutionContext execCxt, int preferredOutputBlockSize) protected abstract ExecPlanTask
TaskBasedQueryPlanCompilerBase.createTaskForUnaryExecOp
(UnaryExecutableOp op, ExecPlanTask childTask, ExecutionContext execCxt, int preferredOutputBlockSize) Method parameters in se.liu.ida.hefquin.engine.queryproc.impl.compiler with type arguments of type ExecPlanTaskModifier and TypeMethodDescriptionprotected ExecPlanTask
TaskBasedQueryPlanCompilerBase.Worker._createTasks
(PhysicalPlan qep, LinkedList<ExecPlanTask> tasks, int preferredOutputBlockSize, ExecutionContext execCxt) void
PushBasedQueryPlanCompilerImpl.Worker.createTasks
(PhysicalPlan qep, LinkedList<ExecPlanTask> tasks, int preferredOutputBlockSize, ExecutionContext execCxt) void
TaskBasedQueryPlanCompilerBase.Worker.createTasks
(PhysicalPlan qep, LinkedList<ExecPlanTask> tasks, int preferredOutputBlockSize, ExecutionContext execCxt)