Class ExecPlanTaskBase
java.lang.Object
se.liu.ida.hefquin.engine.queryplan.executable.impl.ExecPlanTaskBase
- All Implemented Interfaces:
Runnable
,StatsProvider
,ExecPlanTask
- Direct Known Subclasses:
PullBasedExecPlanTaskBase
,PushBasedExecPlanTaskBase
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected class
protected static enum
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final Queue<IntermediateResultBlock>
protected final ExecutionContext
protected final int
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
ExecPlanTaskBase
(ExecutionContext execCxt, int preferredMinimumBlockSize) -
Method Summary
Modifier and TypeMethodDescriptionReturns the exception that caused the execution of this task to fail (in caseExecPlanTask.hasFailed()
istrue
).protected abstract ExecutableOperator
getStats()
protected ExecPlanTaskBase.Status
boolean
Returns true if the execution of this task has failed with an exception.boolean
Returns true if an intermediate result block is already be available to be requested viaExecPlanTask.getNextIntermediateResultBlock()
.boolean
Returns true if the execution of this task has completed successfully, and returns false if either the execution is still running (in which caseExecPlanTask.isRunning()
istrue
) or the execution has been interrupted (in which caseExecPlanTask.isRunning()
isfalse
).boolean
Returns true if the execution of this task is currently running; that is, the execution has started and has neither been interrupted nor completed.void
protected void
setCauseOfFailure
(Exception cause) protected void
setStatus
(ExecPlanTaskBase.Status newStatus) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface se.liu.ida.hefquin.engine.queryplan.executable.impl.ExecPlanTask
getNextIntermediateResultBlock
-
Field Details
-
execCxt
-
preferredMinimumBlockSize
protected final int preferredMinimumBlockSize -
availableResultBlocks
-
-
Constructor Details
-
ExecPlanTaskBase
-
-
Method Details
-
getExecOp
-
getExceptionsCaughtDuringExecution
-
isRunning
public boolean isRunning()Description copied from interface:ExecPlanTask
Returns true if the execution of this task is currently running; that is, the execution has started and has neither been interrupted nor completed.- Specified by:
isRunning
in interfaceExecPlanTask
-
isCompleted
public boolean isCompleted()Description copied from interface:ExecPlanTask
Returns true if the execution of this task has completed successfully, and returns false if either the execution is still running (in which caseExecPlanTask.isRunning()
istrue
) or the execution has been interrupted (in which caseExecPlanTask.isRunning()
isfalse
).- Specified by:
isCompleted
in interfaceExecPlanTask
-
hasFailed
public boolean hasFailed()Description copied from interface:ExecPlanTask
Returns true if the execution of this task has failed with an exception. The exception that caused the failed can be obtained by callingExecPlanTask.getCauseOfFailure()
.- Specified by:
hasFailed
in interfaceExecPlanTask
-
getCauseOfFailure
Description copied from interface:ExecPlanTask
Returns the exception that caused the execution of this task to fail (in caseExecPlanTask.hasFailed()
istrue
).- Specified by:
getCauseOfFailure
in interfaceExecPlanTask
-
hasNextIntermediateResultBlockAvailable
public boolean hasNextIntermediateResultBlockAvailable()Description copied from interface:ExecPlanTask
Returns true if an intermediate result block is already be available to be requested viaExecPlanTask.getNextIntermediateResultBlock()
. Hence, in this case, callingExecPlanTask.getNextIntermediateResultBlock()
would not cause the calling thread to wait.- Specified by:
hasNextIntermediateResultBlockAvailable
in interfaceExecPlanTask
-
getStats
- Specified by:
getStats
in interfaceExecPlanTask
- Specified by:
getStats
in interfaceStatsProvider
-
resetStats
public void resetStats()- Specified by:
resetStats
in interfaceStatsProvider
-
getStatus
-
setStatus
-
setCauseOfFailure
-