本文整理匯總了Python中apscheduler.job.Job._jobstore_alias方法的典型用法代碼示例。如果您正苦於以下問題:Python Job._jobstore_alias方法的具體用法?Python Job._jobstore_alias怎麽用?Python Job._jobstore_alias使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類apscheduler.job.Job
的用法示例。
在下文中一共展示了Job._jobstore_alias方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: _reconstitute_job
# 需要導入模塊: from apscheduler.job import Job [as 別名]
# 或者: from apscheduler.job.Job import _jobstore_alias [as 別名]
def _reconstitute_job(self, job_state):
schedule = job_state['schedule']
schedule.pop('coalesce', None)
job = Job(
id=job_state['id'],
func="__main__:job",
trigger=CronTrigger(**schedule),
name=job_state['name'],
args=[job_state['task']] + job_state['args'],
scheduler=self._scheduler,
executor='default',
next_run_time=utc_timestamp_to_datetime(job_state['next_run_time']),
kwargs={
'id': job_state['id'],
'name': job_state['name'],
'hidden': job_state.get('hidden', False),
'protected': job_state.get('protected', False)
}
)
job.coalesce = True
job.max_instances = 1
job.misfire_grace_time = 0
job._jobstore_alias = self._alias
return job
示例2: _reconstitute_job
# 需要導入模塊: from apscheduler.job import Job [as 別名]
# 或者: from apscheduler.job.Job import _jobstore_alias [as 別名]
def _reconstitute_job(self, job_state):
schedule = job_state['schedule']
schedule.pop('coalesce', None)
next_run_time = job_state['next_run_time']
if next_run_time == 1:
# This is hacky. We need to subtract more than value of misfire_grace_time
# so that the job will be missed right after loading it for the first time
# after doing fresh install instead of being executed.
next_run_time = int(time.time() - 1200)
job = Job(
id=job_state['id'],
func="__main__:job",
trigger=CronTrigger(**schedule),
name=job_state['name'],
args=[job_state['task']] + job_state['args'],
scheduler=self._scheduler,
executor='default',
next_run_time=utc_timestamp_to_datetime(next_run_time),
kwargs={
'id': job_state['id'],
'name': job_state['name'],
'hidden': job_state.get('hidden', False),
'protected': job_state.get('protected', False)
}
)
job.coalesce = True
job.max_instances = 1
job.misfire_grace_time = 600
job._jobstore_alias = self._alias
return job