Class DatasetChangesCapture

java.lang.Object
org.apache.jena.sparql.core.DatasetChangesCapture
All Implemented Interfaces:
DatasetChanges

@Deprecated public class DatasetChangesCapture extends Object implements DatasetChanges
Deprecated.
Do not use. This class is not transaction-aware.
Capture a record of quad actions
  • Constructor Summary

    Constructors
    Constructor
    Description
    Deprecated.
    Capture quad actions, excluding no-ops
    DatasetChangesCapture(boolean recordNoOps)
    Deprecated.
    Capture quad actions, either including or excluding the "no ops"
    DatasetChangesCapture(boolean captureAdd, boolean captureDelete, boolean captureNoAdd, boolean captureNoDelete)
    Deprecated.
    Capture quad actions, selectively by category
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    change(QuadAction qaction, Node g, Node s, Node p, Node o)
    Deprecated.
    A change has occurred
    void
    Deprecated.
    Indicator that a sequence of changes has now finished
    List<org.apache.jena.atlas.lib.Pair<QuadAction,Quad>>
    Deprecated.
    The actions recorded.
    void
    Deprecated.
    Release any resources
    void
    Deprecated.
    Indicator that a sequence of changes is about to start

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • DatasetChangesCapture

      public DatasetChangesCapture()
      Deprecated.
      Capture quad actions, excluding no-ops
    • DatasetChangesCapture

      public DatasetChangesCapture(boolean recordNoOps)
      Deprecated.
      Capture quad actions, either including or excluding the "no ops"
      Parameters:
      recordNoOps - Whether to record QuadAction.NO_ADD and QuadAction.NO_DELETE
    • DatasetChangesCapture

      public DatasetChangesCapture(boolean captureAdd, boolean captureDelete, boolean captureNoAdd, boolean captureNoDelete)
      Deprecated.
      Capture quad actions, selectively by category
  • Method Details

    • getActions

      public List<org.apache.jena.atlas.lib.Pair<QuadAction,Quad>> getActions()
      Deprecated.
      The actions recorded. Only valid until the next start call.
    • start

      public void start()
      Deprecated.
      Description copied from interface: DatasetChanges
      Indicator that a sequence of changes is about to start
      Specified by:
      start in interface DatasetChanges
    • change

      public void change(QuadAction qaction, Node g, Node s, Node p, Node o)
      Deprecated.
      Description copied from interface: DatasetChanges
      A change has occurred
      Specified by:
      change in interface DatasetChanges
      See Also:
    • finish

      public void finish()
      Deprecated.
      Description copied from interface: DatasetChanges
      Indicator that a sequence of changes has now finished
      Specified by:
      finish in interface DatasetChanges
    • reset

      public void reset()
      Deprecated.
      Description copied from interface: DatasetChanges
      Release any resources
      Specified by:
      reset in interface DatasetChanges