Bases: apscheduler.schedulers.blocking.BlockingScheduler
A scheduler that runs in the background using a separate thread (start() will return immediately).
Extra options:
daemon | Set the daemon option in the background thread (defaults to True, see the documentation for further details) |
BackgroundScheduler runs in a thread inside your existing application. Calling start() will start the scheduler and it will continue running after the call returns.
Default executor | PoolExecutor |
External dependencies | none |
Example | examples/schedulers/background.py (view online). |