Method | Description | |
---|---|---|
DeleteJob ( string JobKey ) : void |
删除现有任务
|
|
GetTaskeFireTime ( string CronExpressionString, int numTimes ) : List |
获取任务在未来周期内哪些时间会运行
|
|
InitScheduler ( ) : void |
初始化任务调度对象
|
|
PauseJob ( string JobKey ) : void |
暂停任务
|
|
ResumeJob ( string JobKey ) : void |
恢复运行暂停的任务
|
|
RunOnceTask ( string JobKey ) : void |
立即运行一次任务
|
|
ScheduleJob ( |
启用任务 任务信息 是否删除原有任务
|
|
StartScheduler ( ) : void |
启用任务调度 启动调度时会把任务表中状态为“执行中”的任务加入到任务调度队列中
|
|
StopSchedule ( ) : void |
停止任务调度
|
|
ValidExpression ( string cronExpression ) : bool |
校验字符串是否为正确的Cron表达式
|
Method | Description | |
---|---|---|
GetClassInfo ( string assemblyName, string className ) : |
||
QuartzHelper ( ) : System |
public static DeleteJob ( string JobKey ) : void | ||
JobKey | string | |
return | void |
public static GetTaskeFireTime ( string CronExpressionString, int numTimes ) : List |
||
CronExpressionString | string | Cron表达式 |
numTimes | int | 运行次数 |
return | List |
public static PauseJob ( string JobKey ) : void | ||
JobKey | string | |
return | void |
public static ResumeJob ( string JobKey ) : void | ||
JobKey | string | 任务key |
return | void |
public static RunOnceTask ( string JobKey ) : void | ||
JobKey | string | 任务key |
return | void |
public static ScheduleJob ( |
||
taskUtil | ||
isDeleteOldTask | bool | |
return | void |
public static ValidExpression ( string cronExpression ) : bool | ||
cronExpression | string | 带校验表达式 |
return | bool |