mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
19 lines
400 B
TypeScript
19 lines
400 B
TypeScript
import {TaskProgressDTO} from '../../../common/entities/settings/TaskProgressDTO';
|
|
import {TaskDTO} from '../../../common/entities/task/TaskDTO';
|
|
|
|
export interface ITaskManager {
|
|
|
|
start(taskId: string, config: any): void;
|
|
|
|
stop(taskId: string): void;
|
|
|
|
getProgresses(): { [key: string]: TaskProgressDTO };
|
|
|
|
|
|
getAvailableTasks(): TaskDTO[];
|
|
|
|
stopSchedules(): void;
|
|
|
|
runSchedules(): void;
|
|
}
|