Performance statistics: add JSON file storage support.
[e-mobility-charging-stations-simulator.git] / src / utils / performance-storage / MongoDBStorage.ts
1 import Statistics from '../../types/Statistics';
2 import { Storage } from './Storage';
3
4 export class MongoDBStorage extends Storage {
5 constructor(storageURI: string, logPrefix: string) {
6 super(storageURI, logPrefix);
7 }
8
9 public storePerformanceStatistics(performanceStatistics: Statistics): void {
10 throw new Error('Method not yet implemented');
11 }
12
13 private open(): void {}
14
15 private close(): void {}
16 }