summaryrefslogtreecommitdiff
path: root/apscheduler/executors/asyncio.py
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2014-06-16 18:30:10 +0300
committerAlex Grönholm <alex.gronholm@nextday.fi>2014-06-16 20:18:13 +0300
commita07a13a2cd00744c65de75b4076d26c4bb37898d (patch)
tree31e75972266ea4b163e2a483e56c8aaf05bb11b8 /apscheduler/executors/asyncio.py
parentbb20daf50be0a35c449568e3961790ce8b153366 (diff)
downloadapscheduler-a07a13a2cd00744c65de75b4076d26c4bb37898d.tar.gz
Added entry points for executors and job stores too
Added shortcut methods for configuring executors and job stores
Diffstat (limited to 'apscheduler/executors/asyncio.py')
-rw-r--r--apscheduler/executors/asyncio.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/apscheduler/executors/asyncio.py b/apscheduler/executors/asyncio.py
index 198cdb5..2618f61 100644
--- a/apscheduler/executors/asyncio.py
+++ b/apscheduler/executors/asyncio.py
@@ -5,7 +5,11 @@ from apscheduler.executors.base import BaseExecutor, run_job
class AsyncIOExecutor(BaseExecutor):
- """Runs jobs in the default executor of the event loop."""
+ """
+ Runs jobs in the default executor of the event loop.
+
+ Plugin alias: ``asyncio``
+ """
def start(self, scheduler, alias):
super(AsyncIOExecutor, self).start(scheduler, alias)