use of org.neo4j.batchinsert.internal.BatchInserterImpl in project neo4j by neo4j.
the class BatchInserters method inserter.
public static BatchInserter inserter(DatabaseLayout databaseLayout, Config config, Iterable<ExtensionFactory<?>> extensions) throws IOException {
DefaultFileSystemAbstraction fileSystem = createFileSystem();
BatchInserterImpl inserter = new BatchInserterImpl(databaseLayout, fileSystem, config, extensions, EMPTY);
return new FileSystemClosingBatchInserter(inserter, fileSystem);
}
Aggregations