refactor(simulator): refine LRU cache type name
authorJérôme Benoit <jerome.benoit@sap.com>
Wed, 22 Mar 2023 07:56:05 +0000 (08:56 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Wed, 22 Mar 2023 07:56:05 +0000 (08:56 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/charging-station/SharedLRUCache.ts

index b58dc79ee6a9509c3fc5a79bf4605487b500d174..bb1c0c07e3749e99b6ee76a4d8e3486696f6eac4 100644 (file)
@@ -9,14 +9,14 @@ enum CacheType {
   chargingStationConfiguration = 'chargingStationConfiguration',
 }
 
-type CacheableType = ChargingStationTemplate | ChargingStationConfiguration;
+type CacheValueType = ChargingStationTemplate | ChargingStationConfiguration;
 
 export class SharedLRUCache {
   private static instance: SharedLRUCache | null = null;
-  private readonly lruCache: LRUCache<string, CacheableType>;
+  private readonly lruCache: LRUCache<string, CacheValueType>;
 
   private constructor() {
-    this.lruCache = new LRUCache<string, CacheableType>(
+    this.lruCache = new LRUCache<string, CacheValueType>(
       Bootstrap.getInstance().numberOfChargingStationTemplates +
         Bootstrap.getInstance().numberOfChargingStations
     );
@@ -93,11 +93,11 @@ export class SharedLRUCache {
     return this.lruCache.has(key);
   }
 
-  private get(key: string): CacheableType | undefined {
+  private get(key: string): CacheValueType | undefined {
     return this.lruCache.get(key);
   }
 
-  private set(key: string, value: CacheableType): void {
+  private set(key: string, value: CacheValueType): void {
     this.lruCache.set(key, value);
   }