use of org.neo4j.kernel.impl.index.labelscan.NativeLabelScanStore in project neo4j by neo4j.
the class NativeLabelScanStoreExtension method newInstance.
@Override
public Lifecycle newInstance(KernelContext context, Dependencies dependencies) throws Throwable {
Log log = dependencies.getLogService().getInternalLog(NativeLabelScanStore.class);
Monitor monitor = new LoggingMonitor(log, this.monitor);
NativeLabelScanStore labelScanStore = new NativeLabelScanStore(dependencies.pageCache(), context.storeDir(), new FullLabelStream(dependencies.indexStoreView()), dependencies.getConfig().get(GraphDatabaseSettings.read_only), monitor);
return new LabelScanStoreProvider(NAME, labelScanStore);
}
Aggregations