summaryrefslogtreecommitdiff
path: root/docs/modules/schedulers/twisted.rst
blob: d254a2e8cd96c713ca49f39da6d1960b54019dc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
:mod:`apscheduler.schedulers.twisted`
=====================================

.. automodule:: apscheduler.schedulers.twisted

API
---

.. autoclass:: TwistedScheduler
    :show-inheritance:


Introduction
------------

TwistedScheduler was meant to be used in `Twisted <https://twistedmatrix.com/trac/>`_ applications.
By default it uses the reactor's thread pool to execute jobs.

.. list-table::
   :widths: 1 4

   * - Default executor
     - :class:`~apscheduler.executors.twisted.TwistedExecutor`
   * - External dependencies
     - `twisted <https://pypi.python.org/pypi/Twisted/>`_
   * - Example
     - ``examples/schedulers/twisted_.py``
       (`view online <https://bitbucket.org/agronholm/apscheduler/src/master/examples/schedulers/twisted_.py>`_).