Interface UpdateExecWrapper
- All Superinterfaces:
org.apache.jena.sparql.exec.UpdateExec,org.apache.jena.update.UpdateProcessor,UpdateProcessorWrapper<org.apache.jena.update.UpdateProcessor>
- All Known Implementing Classes:
DatasetExecWrapperTxn,UpdateExecWrapperBase,UpdateExecWrapperTxn
public interface UpdateExecWrapper
extends UpdateProcessorWrapper<org.apache.jena.update.UpdateProcessor>, org.apache.jena.sparql.exec.UpdateExec
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidGives a wrapper a change to perform an action after execution.default voidGives a wrapper a change to perform an action before execution.default voidexecute()default voidGives a wrapper a change to perform an action in case of an execution during execution.Methods inherited from interface org.apache.jena.update.UpdateProcessor
getUpdateRequest, getUpdateRequestStringMethods inherited from interface org.aksw.jenax.dataaccess.sparql.execution.update.UpdateProcessorWrapper
abort, getContext, getDelegate
-
Method Details
-
execute
default void execute()- Specified by:
executein interfaceorg.apache.jena.update.UpdateProcessor- Specified by:
executein interfaceUpdateProcessorWrapper<org.apache.jena.update.UpdateProcessor>
-
beforeExec
default void beforeExec()Gives a wrapper a change to perform an action before execution. This method should only be called byexecute()and never manually. -
afterExec
default void afterExec()Gives a wrapper a change to perform an action after execution. This method should only be called byexecute()and never manually. -
onException
Gives a wrapper a change to perform an action in case of an execution during execution. This method should only be called byexecute()and never manually.
-