Exemple #1
0
 public CacheInvalidationTransactionApplier(NeoStores neoStores, CacheAccessBackDoor cacheAccess)
 {
     this._cacheAccess = cacheAccess;
     this._relationshipTypeTokenStore = neoStores.RelationshipTypeTokenStore;
     this._labelTokenStore            = neoStores.LabelTokenStore;
     this._propertyKeyTokenStore      = neoStores.PropertyKeyTokenStore;
 }
 public NeoStoreTransactionApplier(CommandVersion version, NeoStores neoStores, CacheAccessBackDoor cacheAccess, LockService lockService, long transactionId, LockGroup lockGroup)
 {
     this._version       = version;
     this._lockGroup     = lockGroup;
     this._transactionId = transactionId;
     this._lockService   = lockService;
     this._neoStores     = neoStores;
     this._cacheAccess   = cacheAccess;
 }
Exemple #3
0
 public CacheInvalidationBatchTransactionApplier(NeoStores neoStores, CacheAccessBackDoor cacheAccess)
 {
     this._neoStores   = neoStores;
     this._cacheAccess = cacheAccess;
 }