fix(core): update
This commit is contained in:
parent
b077bd7a1b
commit
57a27604a7
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/taskbuffer',
|
name: '@push.rocks/taskbuffer',
|
||||||
version: '3.0.14',
|
version: '3.0.15',
|
||||||
description: 'flexible task management. TypeScript ready!'
|
description: 'flexible task management. TypeScript ready!'
|
||||||
}
|
}
|
||||||
|
@ -21,8 +21,8 @@ export class TaskManager {
|
|||||||
distributedCoordinator: null,
|
distributedCoordinator: null,
|
||||||
};
|
};
|
||||||
|
|
||||||
constructor(optionosArg: ITaskManagerConstructorOptions = {}) {
|
constructor(optionsArg: ITaskManagerConstructorOptions = {}) {
|
||||||
this.options = Object.assign(this.options, optionosArg);
|
this.options = Object.assign(this.options, optionsArg);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -137,11 +137,19 @@ export class TaskManager {
|
|||||||
public async descheduleTask(task: Task) {
|
public async descheduleTask(task: Task) {
|
||||||
await this.descheduleTaskByName(task.name);
|
await this.descheduleTaskByName(task.name);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* returns all schedules of a specific task
|
* returns the schedule of a specific task
|
||||||
* @param taskNameArg
|
* @param taskNameArg
|
||||||
*/
|
*/
|
||||||
public getSchedulesForTaskName(taskNameArg: string) {}
|
public getScheduleForTaskName(taskNameArg: string): string | null {
|
||||||
|
const task = this.getTaskByName(taskNameArg);
|
||||||
|
if (!task || !task.cronJob) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return task.cronJob.cronExpression;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* starts the taskmanager
|
* starts the taskmanager
|
||||||
|
Loading…
Reference in New Issue
Block a user