apscheduler.executors.pool¶
Module Contents¶
-
class
apscheduler.executors.pool.ThreadPoolExecutor(max_workers=10)¶ An executor that runs jobs in a concurrent.futures thread pool.
Plugin alias:
threadpool- Parameters
max_workers – the maximum number of spawned threads.
-
class
apscheduler.executors.pool.ProcessPoolExecutor(max_workers=10)¶ An executor that runs jobs in a concurrent.futures process pool.
Plugin alias:
processpool- Parameters
max_workers – the maximum number of spawned processes.