summaryrefslogtreecommitdiff
path: root/apscheduler/schedulers
Commit message (Expand)AuthorAgeFilesLines
* Fixed AsyncIO not getting tested on Python 3.2 and lowerAlex Grönholm2014-05-301-1/+4
* Tweaked the scheduler and job stores API and added the reschedule_job() methodAlex Grönholm2014-05-301-45/+110
* Revised the rest of the documentationAlex Grönholm2014-05-291-3/+32
* Removed job run counting and the max_runs options since they could not be rel...Alex Grönholm2014-05-281-13/+7
* Respect the scheduler defaults in @scheduled_job()Alex Grönholm2014-05-281-3/+4
* Fixed the signature of the add_job() method in the docsAlex Grönholm2014-05-281-5/+6
* Moved scheduler documentation to the appropriate API documentation locationsAlex Grönholm2014-05-285-5/+40
* Updated API documentationAlex Grönholm2014-05-281-2/+2
* Fixed OverflowError on WindowsAlex Grönholm2014-05-282-3/+3
* Marked Job.get_run_times() as privateAlex Grönholm2014-05-261-1/+1
* Removed the JobHandle classAlex Grönholm2014-05-261-24/+25
* Replaced python-dateutil with pytz and tzlocal because dateutil can't handle ...Alex Grönholm2014-05-191-2/+2
* Fixed too long maximum wait time on Python 3Alex Grönholm2014-05-191-3/+3
* Fixed Ctrl+C not exiting the process after there are no more jobs to runAlex Grönholm2014-05-111-1/+3
* Added configurable job defaults for max_instances and max_runs and enabled a ...Alex Grönholm2014-04-211-11/+21
* Automatically remove jobs that fail to deserialize or whose executor is not f...Alex Grönholm2014-04-201-1/+3
* Renamed _notify_listeners() to _dispatch_event()Alex Grönholm2014-04-201-8/+8
* Renamed logger to _logger for consistency with job stores and executorsAlex Grönholm2014-04-201-13/+13
* Added missing guards for working with job stores and executorsAlex Grönholm2014-04-191-24/+27
* Docstring improvementsAlex Grönholm2014-04-191-13/+49
* Added support for replacing an existing job (while preserving the run count)Alex Grönholm2014-04-191-14/+25
* Minor improvements to the job store and executor APIsAlex Grönholm2014-04-181-10/+9
* Harmonized docstrings and switched to PyCharm conventions in type referencesAlex Grönholm2014-04-181-47/+50
* Use flake8 instead of the pep8 tool to uncover a broader variety of problemsAlex Grönholm2014-04-182-5/+8
* Use logger names consistently in the scheduler, executors and job storesAlex Grönholm2014-04-181-8/+15
* Added the ability to pause and resume jobsAlex Grönholm2014-04-181-0/+18
* Minor code cleanupsAlex Grönholm2014-04-141-17/+23
* Added the _lookup_jobstore() method in order to give a sane error message whe...Alex Grönholm2014-04-111-7/+15
* Simplified the job store API and harmonized the Mongo/SQLAlchemy job store im...Alex Grönholm2014-04-101-18/+16
* Switched the order of the "func" and "trigger" parameters around in add_job()Alex Grönholm2014-04-061-11/+17
* Added specific executors for supported frameworksAlex Grönholm2014-04-064-4/+23
* Replaced the thread pool with a pluggable executor systemAlex Grönholm2014-04-061-85/+100
* Py3k and other minor fixes and cleanupsAlex Grönholm2014-04-021-6/+0
* Changed the syntax for adding a new jobAlex Grönholm2014-04-011-118/+33
* Wake up the scheduler if the job's next run time is changed by modify_job()Alex Grönholm2014-03-161-0/+4
* Removed the Job.compute_next_run_time() methodAlex Grönholm2014-03-101-5/+1
* Emit the proper event from remove_job()Alex Grönholm2014-03-091-22/+22
* Enabled proper modification of the job's callableAlex Grönholm2014-03-091-1/+2
* Modified JobHandle to use the job state when looking up Job attributesAlex Grönholm2014-03-091-8/+8
* Return JobHandles instead of Jobs from the scheduler's public methodsAlex Grönholm2014-03-091-20/+20
* Added the jobstore argument to print_jobs() and made it print pending jobs as...Alex Grönholm2014-03-091-14/+19
* Added a method to modify jobsAlex Grönholm2014-03-091-8/+46
* Added the remove() method to JobAlex Grönholm2014-03-091-7/+14
* Decoupled schedulers and job storesAlex Grönholm2014-03-091-2/+2
* Overhauled the job store system and ditched ShelveJobStore and RedisJobStore ...Alex Grönholm2014-03-091-37/+54
* Removed inaccurate docstringAlex Grönholm2014-03-081-3/+0
* Implemented integration with various event loopsAlex Grönholm2014-02-249-0/+849