| java.lang.Object com.hp.hpl.jena.db.impl.DBBulkUpdateHandler
DBBulkUpdateHandler | public class DBBulkUpdateHandler implements BulkUpdateHandler(Code) | | An implementation of the bulk update interface. Updated by kers to permit event
handling for bulk updates.
author: csayers based on SimpleBulkUpdateHandler by kers version: $Revision: 1.23 $ |
Method Summary | |
public void | add(Triple[] triples) add a list of triples to the graph; the add is done as a list with notify off,
and then the array-notify invoked. | public void | add(List triples) | protected void | add(List triples, boolean notify) add a list of triples to the graph, notifying only if requested. | public void | add(Iterator it) Add the [elements of the] iterator to the graph. | public void | add(Graph g) | public void | add(Graph g, boolean withReifications) | protected void | addIterator(Iterator it) | public void | delete(Triple[] triples) remove a list of triples from the graph; the remove is done as a list with notify off,
and then the array-notify invoked. | public void | delete(List triples) | protected void | delete(List triples, boolean notify) Add a list of triples to the graph, notifying only if requested. | public void | delete(Iterator it) Delete the [elements of the] iterator from the graph. | public void | delete(Graph g) | public void | delete(Graph g, boolean withReifications) | protected void | deleteIterator(Iterator it) | public void | remove(Node s, Node p, Node o) | public void | removeAll() |
CHUNK_SIZE | protected static int CHUNK_SIZE(Code) | | |
add | public void add(Triple[] triples)(Code) | | add a list of triples to the graph; the add is done as a list with notify off,
and then the array-notify invoked.
|
add | protected void add(List triples, boolean notify)(Code) | | add a list of triples to the graph, notifying only if requested.
|
add | public void add(Graph g, boolean withReifications)(Code) | | |
delete | public void delete(Triple[] triples)(Code) | | remove a list of triples from the graph; the remove is done as a list with notify off,
and then the array-notify invoked.
|
delete | protected void delete(List triples, boolean notify)(Code) | | Add a list of triples to the graph, notifying only if requested.
|
delete | public void delete(Graph g, boolean withReifications)(Code) | | |
removeAll | public void removeAll()(Code) | | |
|
|