Interface TextDatasetChanges
-
- All Known Subinterfaces:
TextDocProducer
- All Known Implementing Classes:
ChangesBatched,TextDocProducerEntities,TextDocProducerTriples
public interface TextDatasetChangesInterface for notification of changes (adds and deletes of quads) to a DatasetGraph
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidchange(TextQuadAction qaction, Node g, Node s, Node p, Node o)A change has occurredvoidfinish()Indicator that a sequence of changes has now finishedvoidreset()Release any resourcesvoidstart()Indicator that a sequence of changes is about to start
-
-
-
Method Detail
-
start
void start()
Indicator that a sequence of changes is about to start
-
change
void change(TextQuadAction qaction, Node g, Node s, Node p, Node o)
A change has occurred- See Also:
TextQuadAction
-
finish
void finish()
Indicator that a sequence of changes has now finished
-
reset
void reset()
Release any resources
-
-