fix(core): update
This commit is contained in:
@@ -1,6 +1,21 @@
|
||||
import * as plugins from './levelcache.plugins';
|
||||
import { LevelCache } from './levelcache.classes.levelcache';
|
||||
|
||||
export class CacheRouter {
|
||||
async routeStoreAction() {}
|
||||
async routeRetrieveAction() {}
|
||||
}
|
||||
public levelCacheRef: LevelCache;
|
||||
public cacheMap;
|
||||
|
||||
constructor(levelCacheRef: LevelCache) {
|
||||
this.levelCacheRef = levelCacheRef;
|
||||
}
|
||||
|
||||
/**
|
||||
* gets the relevant cache to perform a store action on
|
||||
*/
|
||||
async getCacheForStoreAction() {}
|
||||
|
||||
/**
|
||||
* gets the relevant cache to perform a retrieval action on
|
||||
*/
|
||||
async getCacheForRetrieveAction() {}
|
||||
}
|
||||
|
Reference in New Issue
Block a user