Module org.apache.jena.arq
Class ServiceExecutorDecorator
java.lang.Object
org.apache.jena.sparql.service.single.ServiceExecutorDecorator
- All Implemented Interfaces:
ServiceExecutor
Form a service executor from a base service executor and a 'chain' that acts as a decorator
-
Constructor Summary
ConstructorsConstructorDescriptionServiceExecutorDecorator
(ServiceExecutor base, ChainingServiceExecutor decorator) -
Method Summary
Modifier and TypeMethodDescriptioncreateExecution
(OpService opExecute, OpService original, Binding binding, ExecutionContext execCxt) If this factory cannot handle the execution request then this method should return null.
-
Constructor Details
-
ServiceExecutorDecorator
-
-
Method Details
-
createExecution
public QueryIterator createExecution(OpService opExecute, OpService original, Binding binding, ExecutionContext execCxt) Description copied from interface:ServiceExecutor
If this factory cannot handle the execution request then this method should return null. Otherwise, aQueryIterator
is returned.- Specified by:
createExecution
in interfaceServiceExecutor
- Returns:
- A QueryIterator if this factory can handle the request, or null otherwise.
-