Ejemplo n.º 1
0
 internal NeoStoreKernelModule(TransactionCommitProcess transactionCommitProcess, KernelImpl kernel, KernelTransactions kernelTransactions, NeoStoreFileListing fileListing)
 {
     this._transactionCommitProcess = transactionCommitProcess;
     this._kernel             = kernel;
     this._kernelTransactions = kernelTransactions;
     this._fileListing        = fileListing;
 }
Ejemplo n.º 2
0
 public override void Start()
 {
     if (_config.get(GraphDatabaseSettings.pagecache_warmup_enabled))
     {
         _pageCacheWarmer.start();
         _databaseAvailabilityGuard.addListener(_availabilityListener);
         NeoStoreFileListing.registerStoreFileProvider(_pageCacheWarmer);
         _started = true;
     }
 }