Package org.apache.jena.sparql.core
Class DatasetChangesBatched
- java.lang.Object
-
- org.apache.jena.sparql.core.DatasetChangesBatched
-
- All Implemented Interfaces:
DatasetChanges
@Deprecated public abstract class DatasetChangesBatched extends java.lang.Object implements DatasetChanges
Deprecated.Do not use. This class does not have a clear contract when used with transactions.Collect a stream of DatasetChanges into batches. A batch is adjacent quads changes with (same graph, same subject, same action).
-
-
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 finishedvoidreset()Deprecated.Release any resourcesvoidstart()Deprecated.Indicator that a sequence of changes is about to start
-
-
-
Method Detail
-
start
public final void start()
Deprecated.Description copied from interface:DatasetChangesIndicator that a sequence of changes is about to start- Specified by:
startin interfaceDatasetChanges
-
finish
public final void finish()
Deprecated.Description copied from interface:DatasetChangesIndicator that a sequence of changes has now finished- Specified by:
finishin interfaceDatasetChanges
-
reset
public final void reset()
Deprecated.Description copied from interface:DatasetChangesRelease any resources- Specified by:
resetin 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
-
-