2018-03-30 15:30:30 -04:00
|
|
|
import {IIndexingManager} from '../interfaces/IIndexingManager';
|
|
|
|
import {IndexingProgressDTO} from '../../../common/entities/settings/IndexingProgressDTO';
|
2017-07-25 21:09:37 +02:00
|
|
|
|
|
|
|
export class IndexingManager implements IIndexingManager {
|
|
|
|
|
|
|
|
startIndexing(): void {
|
2018-03-30 15:30:30 -04:00
|
|
|
throw new Error('not supported by memory DB');
|
2017-07-25 21:09:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
getProgress(): IndexingProgressDTO {
|
2018-03-30 15:30:30 -04:00
|
|
|
throw new Error('not supported by memory DB');
|
2017-07-25 21:09:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cancelIndexing(): void {
|
2018-03-30 15:30:30 -04:00
|
|
|
throw new Error('not supported by memory DB');
|
2017-07-25 21:09:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
reset(): Promise<void> {
|
2018-03-30 15:30:30 -04:00
|
|
|
throw new Error('Method not implemented.');
|
2017-07-25 21:09:37 +02:00
|
|
|
}
|
|
|
|
}
|