You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
616 B
Python
25 lines
616 B
Python
"""
|
|
This type stub file was generated by pyright.
|
|
"""
|
|
|
|
from apscheduler.executors.base import BaseExecutor
|
|
|
|
class AsyncIOExecutor(BaseExecutor):
|
|
"""
|
|
Runs jobs in the default executor of the event loop.
|
|
|
|
If the job function is a native coroutine function, it is scheduled to be run directly in the
|
|
event loop as soon as possible. All other functions are run in the event loop's default
|
|
executor which is usually a thread pool.
|
|
|
|
Plugin alias: ``asyncio``
|
|
"""
|
|
def start(self, scheduler, alias): # -> None:
|
|
...
|
|
|
|
def shutdown(self, wait=...): # -> None:
|
|
...
|
|
|
|
|
|
|