Package org.apache.jena.sparql.core
Class DatasetChangesCounter
- java.lang.Object
-
- org.apache.jena.sparql.core.DatasetChangesCounter
-
- All Implemented Interfaces:
DatasetChanges
@Deprecated public class DatasetChangesCounter extends java.lang.Object implements DatasetChanges
Deprecated.Do not use. This class is not transaction-aware.Count changes, or simply note if a change has been made.
-
-
Constructor Summary
Constructors Constructor Description DatasetChangesCounter()Deprecated.
-
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 finishedbooleanhasChanged()Deprecated.voidreset()Deprecated.Release any resourcesvoidstart()Deprecated.Indicator that a sequence of changes is about to start
-
-
-
Method Detail
-
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
-
hasChanged
public boolean hasChanged()
Deprecated.
-
reset
public void reset()
Deprecated.Description copied from interface:DatasetChangesRelease any resources- Specified by:
resetin interfaceDatasetChanges
-
-