Class ParallelBoundJoinTask
java.lang.Object
org.eclipse.rdf4j.federated.evaluation.concurrent.ParallelTaskBase<BindingSet>
org.eclipse.rdf4j.federated.evaluation.join.ParallelBoundJoinTask
- All Implemented Interfaces:
ParallelTask<BindingSet>
A task implementation representing a bound join, see
FederationEvalStrategy.evaluateBoundJoinStatementPattern(StatementTupleExpr, List)
for further details on the
evaluation process.- Author:
- Andreas Schwarte
-
Field Summary
Modifier and TypeFieldDescriptionprotected final List<BindingSet>
protected final StatementTupleExpr
protected final ParallelExecutor<BindingSet>
protected final FederationEvalStrategy
Fields inherited from class org.eclipse.rdf4j.federated.evaluation.concurrent.ParallelTaskBase
scheduledFuture
-
Constructor Summary
ConstructorDescriptionParallelBoundJoinTask
(ParallelExecutor<BindingSet> joinControl, FederationEvalStrategy strategy, StatementTupleExpr expr, List<BindingSet> bindings) -
Method Summary
Modifier and TypeMethodDescriptionreturn the controlling instance, e.g.protected CloseableIteration<BindingSet,
QueryEvaluationException> Methods inherited from class org.eclipse.rdf4j.federated.evaluation.concurrent.ParallelTaskBase
cancel, close, performTask, setScheduledFuture, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.eclipse.rdf4j.federated.evaluation.concurrent.ParallelTask
getQueryInfo
-
Field Details
-
strategy
-
expr
-
bindings
-
joinControl
-
-
Constructor Details
-
ParallelBoundJoinTask
public ParallelBoundJoinTask(ParallelExecutor<BindingSet> joinControl, FederationEvalStrategy strategy, StatementTupleExpr expr, List<BindingSet> bindings)
-
-
Method Details
-
performTaskInternal
protected CloseableIteration<BindingSet,QueryEvaluationException> performTaskInternal() throws Exception- Specified by:
performTaskInternal
in classParallelTaskBase<BindingSet>
- Throws:
Exception
-
getControl
Description copied from interface:ParallelTask
return the controlling instance, e.g. in most cases the instance of a thread. Shared variables are used to inform the thread about new events.- Returns:
- the control executor
-