ms/packages/api/src/task.ts

78 lines
1.8 KiB
TypeScript
Raw Normal View History

export namespace task {
export const TaskManager = Symbol('TaskManager')
export interface TaskManager {
/**
*
* @param func
*/
create(func: Function): task.Task;
/**
* 线
* @param func
*/
callSyncMethod(func: Function): any;
}
/**
*
*/
export abstract class Task {
protected plugin: any;
protected func: Function;
protected isAsync: boolean = false;
protected laterTime: number = 0;
protected interval: number = 0;
constructor(plugin: any, func: Function) {
this.plugin = plugin;
this.func = func;
}
/**
*
* @param isAsync
*/
async(isAsync: boolean = true): task.Task {
this.isAsync = isAsync;
return this;
}
/**
*
* @param tick Tick
*/
later(tick: number): task.Task {
this.laterTime = tick;
return this;
}
/**
*
* @param tick Tick
*/
timer(tick: number): task.Task {
this.interval = tick;
return this;
}
protected run(): void {
try {
this.func();
} catch (ex) {
console.console('§4插件执行任务时发生错误', ex)
console.ex(ex);
}
}
/**
*
*/
abstract submit(): Cancelable;
}
/**
*
*/
export interface Cancelable {
cancel(): boolean;
}
}