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