Class BaseForExecOps
java.lang.Object
se.liu.ida.hefquin.engine.queryplan.executable.impl.ops.BaseForExecOps
- All Implemented Interfaces:
StatsProvider
,ExecutableOperator
- Direct Known Subclasses:
BinaryExecutableOpBase
,NaryExecutableOpBase
,NullaryExecutableOpBase
,UnaryExecutableOpBase
Top-level base class for all implementations of
ExecutableOperator
.
This base class handles the collection of exceptions that may occur during
the execution of the algorithm implemented by an executable operator.-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final boolean
Iftrue
, then the subclasses are expected to collect exceptions (by callingrecordExceptionCaughtDuringExecution(Exception)
); otherwise, they are expected to throw the exceptions immediately. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns exceptions that were caught and collected during the execution of this operator (if any).protected void
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.ExecutableOperator
getStats
Methods inherited from interface se.liu.ida.hefquin.base.utils.StatsProvider
resetStats
-
Field Details
-
collectExceptions
protected final boolean collectExceptionsIftrue
, then the subclasses are expected to collect exceptions (by callingrecordExceptionCaughtDuringExecution(Exception)
); otherwise, they are expected to throw the exceptions immediately.
-
-
Constructor Details
-
BaseForExecOps
public BaseForExecOps(boolean collectExceptions)
-
-
Method Details
-
getExceptionsCaughtDuringExecution
Description copied from interface:ExecutableOperator
Returns exceptions that were caught and collected during the execution of this operator (if any). If no exceptions were caught (which should be the normal case), then this function returns an empty list.- Specified by:
getExceptionsCaughtDuringExecution
in interfaceExecutableOperator
-
recordExceptionCaughtDuringExecution
-