use of org.neo4j.unsafe.batchinsert.internal.BatchInserterImpl in project neo4j by neo4j.
the class BatchInserters method inserter.
public static BatchInserter inserter(File storeDir, Map<String, String> config, Iterable<KernelExtensionFactory<?>> kernelExtensions) throws IOException {
DefaultFileSystemAbstraction fileSystem = createFileSystem();
BatchInserterImpl inserter = new BatchInserterImpl(storeDir, fileSystem, config, kernelExtensions);
return new FileSystemClosingBatchInserter(inserter, inserter, fileSystem);
}
Aggregations