java.lang.Object
org.apache.jena.sparql.core.DatasetChangesCapture
- All Implemented Interfaces:
DatasetChanges
Deprecated.
Do not use. This class is not transaction-aware.
Capture a record of quad actions
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.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
Modifier and TypeMethodDescriptionvoid
Deprecated.A change has occurredvoid
finish()
Deprecated.Indicator that a sequence of changes has now finishedList<org.apache.jena.atlas.lib.Pair<QuadAction,
Quad>> Deprecated.The actions recorded.void
reset()
Deprecated.Release any resourcesvoid
start()
Deprecated.Indicator that a sequence of changes is about to start
-
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 recordQuadAction.NO_ADD
andQuadAction.NO_DELETE
-
DatasetChangesCapture
public DatasetChangesCapture(boolean captureAdd, boolean captureDelete, boolean captureNoAdd, boolean captureNoDelete) Deprecated.Capture quad actions, selectively by category
-
-
Method Details
-
getActions
Deprecated.The actions recorded. Only valid until the nextstart
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 interfaceDatasetChanges
-
change
Deprecated.Description copied from interface:DatasetChanges
A change has occurred- Specified by:
change
in interfaceDatasetChanges
- 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 interfaceDatasetChanges
-
reset
public void reset()Deprecated.Description copied from interface:DatasetChanges
Release any resources- Specified by:
reset
in interfaceDatasetChanges
-