diff options
author | Alex Grönholm <alex.gronholm@nextday.fi> | 2011-05-29 15:41:00 +0300 |
---|---|---|
committer | Alex Grönholm <alex.gronholm@nextday.fi> | 2011-05-29 15:41:00 +0300 |
commit | 74837b1e337291b25a81203fd4f13d615882d954 (patch) | |
tree | 8dad8d67b81e0e80367afdbe57baa8dc8a061bac /docs/index.rst | |
parent | bce686ffaeffeac829b66ac08b40f24ed29e4eb6 (diff) | |
download | apscheduler-74837b1e337291b25a81203fd4f13d615882d954.tar.gz |
Linked to the "extending" document and fixed an error in the short code example
Diffstat (limited to 'docs/index.rst')
-rw-r--r-- | docs/index.rst | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/docs/index.rst b/docs/index.rst index 710959d..576d9b2 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -225,10 +225,6 @@ job stores -- one :class:`~apscheduler.jobstores.ram_store.RAMJobStore` and one :class:`~apscheduler.jobstores.shelve_store.ShelveJobStore`. -In addition to the built-in job stores, it is possible to extend APScheduler to -support other persistence mechanisms as well. See the -:doc:`Extending APScheduler <extending>` section for details. - Job persistency --------------- @@ -335,6 +331,13 @@ To get a machine processable list of the scheduled jobs, you can use the return a list of :class:`~apscheduler.job.Job` instances. +Extending APScheduler +===================== + +It is possible to extend APScheduler to support alternative job stores and +triggers. See the :doc:`Extending APScheduler <extending>` document for details. + + FAQ === |