feat: add comprehensive GitHub workflow and development tools
This commit is contained in:
15
app/.venv/Lib/site-packages/celery/events/__init__.py
Normal file
15
app/.venv/Lib/site-packages/celery/events/__init__.py
Normal file
@@ -0,0 +1,15 @@
|
||||
"""Monitoring Event Receiver+Dispatcher.
|
||||
|
||||
Events is a stream of messages sent for certain actions occurring
|
||||
in the worker (and clients if :setting:`task_send_sent_event`
|
||||
is enabled), used for monitoring purposes.
|
||||
"""
|
||||
|
||||
from .dispatcher import EventDispatcher
|
||||
from .event import Event, event_exchange, get_exchange, group_from
|
||||
from .receiver import EventReceiver
|
||||
|
||||
__all__ = (
|
||||
'Event', 'EventDispatcher', 'EventReceiver',
|
||||
'event_exchange', 'get_exchange', 'group_from',
|
||||
)
|
||||
Reference in New Issue
Block a user