Package org.apache.jena.sparql.core
Class DatasetChangesCapture
- java.lang.Object
-
- org.apache.jena.sparql.core.DatasetChangesCapture
-
- All Implemented Interfaces:
DatasetChanges
@Deprecated public class DatasetChangesCapture extends java.lang.Object implements DatasetChanges
Deprecated.Do not use. This class is not transaction-aware.Capture a record of quad actions
-
-
Constructor Summary
Constructors Constructor Description DatasetChangesCapture()Deprecated.Capture quad actions, excluding no-opsDatasetChangesCapture(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
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidchange(QuadAction qaction, Node g, Node s, Node p, Node o)Deprecated.A change has occurredvoidfinish()Deprecated.Indicator that a sequence of changes has now finishedjava.util.List<org.apache.jena.atlas.lib.Pair<QuadAction,Quad>>getActions()Deprecated.The actions recorded.voidreset()Deprecated.Release any resourcesvoidstart()Deprecated.Indicator that a sequence of changes is about to start
-
-
-
Constructor Detail
-
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 recordQuadAction.NO_ADDandQuadAction.NO_DELETE
-
DatasetChangesCapture
public DatasetChangesCapture(boolean captureAdd, boolean captureDelete, boolean captureNoAdd, boolean captureNoDelete)Deprecated.Capture quad actions, selectively by category
-
-
Method Detail
-
getActions
public java.util.List<org.apache.jena.atlas.lib.Pair<QuadAction,Quad>> getActions()
Deprecated.The actions recorded. Only valid until the nextstartcall.
-
start
public void start()
Deprecated.Description copied from interface:DatasetChangesIndicator that a sequence of changes is about to start- Specified by:
startin interfaceDatasetChanges
-
change
public void change(QuadAction qaction, Node g, Node s, Node p, Node o)
Deprecated.Description copied from interface:DatasetChangesA change has occurred- Specified by:
changein interfaceDatasetChanges- See Also:
QuadAction
-
finish
public void finish()
Deprecated.Description copied from interface:DatasetChangesIndicator that a sequence of changes has now finished- Specified by:
finishin interfaceDatasetChanges
-
reset
public void reset()
Deprecated.Description copied from interface:DatasetChangesRelease any resources- Specified by:
resetin interfaceDatasetChanges
-
-