我使用GeventScheduler运行APScheduler两个作业。但我希望这些作业暂停运行,例如1分钟,并且在上一次运行完成后,所有任务都会重复此作业。我怎样才能做到这一点?
答案 0 :(得分:0)
这对我有用
def execution_listener(event):
job_id = event.job_id
if event.exception:
logging.error('job_id={} error!'.format(event.job_id))
else:
logging.info('job_id={} success'.format(event.job_id))
# check that the executed job is the first job
if job_id == CONST.JOB_ID.WORKEXP_CUT:
run_job_now(job_id, arg_dict)# run ypur job
def run_job_now(job_id, arg_dict):
logging.info('id={} start'.format(job_id))
job = scheduler.get_job(job_id)
if job:
job.modify(next_run_time=datetime.datetime.now())
else:
scheduler.add_job(next_run_time=datetime.datetime.now(), **arg_dict)
scheduler.add_listener(execution_listener, EVENT_JOB_EXECUTED | EVENT_JOB_ERROR)