mirror of https://github.com/evilhero/mylar
26 lines
778 B
Python
26 lines
778 B
Python
from __future__ import absolute_import
|
|
|
|
from apscheduler.executors.base import BaseExecutor, run_job
|
|
|
|
|
|
class TwistedExecutor(BaseExecutor):
|
|
"""
|
|
Runs jobs in the reactor's thread pool.
|
|
|
|
Plugin alias: ``twisted``
|
|
"""
|
|
|
|
def start(self, scheduler, alias):
|
|
super(TwistedExecutor, self).start(scheduler, alias)
|
|
self._reactor = scheduler._reactor
|
|
|
|
def _do_submit_job(self, job, run_times):
|
|
def callback(success, result):
|
|
if success:
|
|
self._run_job_success(job.id, result)
|
|
else:
|
|
self._run_job_error(job.id, result.value, result.tb)
|
|
|
|
self._reactor.getThreadPool().callInThreadWithCallback(
|
|
callback, run_job, job, job._jobstore_alias, run_times, self._logger.name)
|