public Conjunction<Graph> into( UUID uuid ) throws IOException, SAXException {
return into(Location.create(uuid));
}
public Conjunction<Graph> into( Location at ) throws IOException, SAXException {
GraphImporter importer = new GraphImporter(Graph.this);
importer.importXml(stream, at, skipRootElement).execute(); // 'importXml' creates and uses a new batch
return Graph.this.nextGraph;
}
};
}