mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-10 07:22:37 -07:00
39 lines
1.4 KiB
Python
39 lines
1.4 KiB
Python
from __future__ import absolute_import
|
|
from threading import Thread, Event
|
|
|
|
from apscheduler.schedulers.base import BaseScheduler
|
|
from apscheduler.schedulers.blocking import BlockingScheduler
|
|
from apscheduler.util import asbool
|
|
|
|
|
|
class BackgroundScheduler(BlockingScheduler):
|
|
"""
|
|
A scheduler that runs in the background using a separate thread
|
|
(:meth:`~apscheduler.schedulers.base.BaseScheduler.start` will return immediately).
|
|
|
|
Extra options:
|
|
|
|
========== ============================================================================================
|
|
``daemon`` Set the ``daemon`` option in the background thread (defaults to ``True``,
|
|
see `the documentation <https://docs.python.org/3.4/library/threading.html#thread-objects>`_
|
|
for further details)
|
|
========== ============================================================================================
|
|
"""
|
|
|
|
_thread = None
|
|
|
|
def _configure(self, config):
|
|
self._daemon = asbool(config.pop('daemon', True))
|
|
super(BackgroundScheduler, self)._configure(config)
|
|
|
|
def start(self):
|
|
BaseScheduler.start(self)
|
|
self._event = Event()
|
|
self._thread = Thread(target=self._main_loop, name='APScheduler')
|
|
self._thread.daemon = self._daemon
|
|
self._thread.start()
|
|
|
|
def shutdown(self, wait=True):
|
|
super(BackgroundScheduler, self).shutdown(wait)
|
|
self._thread.join()
|
|
del self._thread
|