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 Type
    Method
    Description
    default void
    Gives a wrapper a change to perform an action after execution.
    default void
    Gives a wrapper a change to perform an action before execution.
    default void
     
    default void
    Gives 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, getUpdateRequestString

    Methods inherited from interface org.aksw.jenax.dataaccess.sparql.execution.update.UpdateProcessorWrapper

    abort, getContext, getDelegate
  • Method Details

    • execute

      default void execute()
      Specified by:
      execute in interface org.apache.jena.update.UpdateProcessor
      Specified by:
      execute in interface UpdateProcessorWrapper<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 by execute() and never manually.
    • afterExec

      default void afterExec()
      Gives a wrapper a change to perform an action after execution. This method should only be called by execute() and never manually.
    • onException

      default void onException(Exception e)
      Gives a wrapper a change to perform an action in case of an execution during execution. This method should only be called by execute() and never manually.