mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
23 lines
No EOL
829 B
Python
23 lines
No EOL
829 B
Python
"""Jobs scheduler for managing background task (asyncio).
|
|
The library gives controlled way for scheduling background tasks for
|
|
asyncio applications.
|
|
"""
|
|
|
|
|
|
__version__ = '0.2.2'
|
|
|
|
import asyncio
|
|
from ._scheduler import Scheduler
|
|
|
|
|
|
async def create_scheduler(cbpi,*, close_timeout=0.1, limit=100,
|
|
pending_limit=10000, exception_handler=None):
|
|
if exception_handler is not None and not callable(exception_handler):
|
|
raise TypeError('A callable object or None is expected, '
|
|
'got {!r}'.format(exception_handler))
|
|
loop = asyncio.get_event_loop()
|
|
return Scheduler(cbpi=cbpi,loop=loop, close_timeout=close_timeout,
|
|
limit=limit, pending_limit=pending_limit,
|
|
exception_handler=exception_handler)
|
|
|
|
__all__ = ('create_scheduler',) |