2019-01-13 17:38:39 +01:00
|
|
|
import {IPersonManager} from '../interfaces/IPersonManager';
|
2019-02-04 18:00:30 -05:00
|
|
|
import {MediaDTO} from '../../../common/entities/MediaDTO';
|
2019-01-13 17:38:39 +01:00
|
|
|
|
|
|
|
export class IndexingTaskManager implements IPersonManager {
|
2019-02-04 18:00:30 -05:00
|
|
|
keywordsToPerson(media: MediaDTO[]): Promise<void> {
|
|
|
|
throw new Error('Method not implemented.');
|
|
|
|
}
|
|
|
|
|
2019-01-13 17:38:39 +01:00
|
|
|
get(name: string): Promise<any> {
|
|
|
|
throw new Error('not supported by memory DB');
|
|
|
|
}
|
|
|
|
|
|
|
|
saveAll(names: string[]): Promise<void> {
|
|
|
|
throw new Error('not supported by memory DB');
|
|
|
|
}
|
|
|
|
}
|