Package org.apache.jena.sparql.core
Interface DatasetChanges
-
- All Known Implementing Classes:
DatasetChangesBatched,DatasetChangesCapture,DatasetChangesCounter
@Deprecated public interface DatasetChangesDeprecated.Do not use. This interface will be removed or significantly changed. To see changes to a dataset, useDatasetGraphWrapperto capture events of interest.Interface for notification of changes (adds and deletes of quads) to a DatasetGraph
-
-
Method Summary
All Methods Instance Methods Abstract 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 finishedvoidreset()Deprecated.Release any resourcesvoidstart()Deprecated.Indicator that a sequence of changes is about to start
-
-
-
Method Detail
-
start
void start()
Deprecated.Indicator that a sequence of changes is about to start
-
change
void change(QuadAction qaction, Node g, Node s, Node p, Node o)
Deprecated.A change has occurred- See Also:
QuadAction
-
finish
void finish()
Deprecated.Indicator that a sequence of changes has now finished
-
reset
void reset()
Deprecated.Release any resources
-
-