Deprecated compatibility imports for :mod:codex_platform.messaging.delivery.base.
Bases: Protocol
Contract for notification delivery transport.
Source code in src/codex_platform/messaging/delivery/base.py
| class NotificationAdapter(Protocol):
"""Contract for notification delivery transport."""
def enqueue(self, task_name: str, payload: dict[str, Any]) -> str | None:
"""Deliver or enqueue a serialized notification payload."""
...
|
Deliver or enqueue a serialized notification payload.
Source code in src/codex_platform/messaging/delivery/base.py
| def enqueue(self, task_name: str, payload: dict[str, Any]) -> str | None:
"""Deliver or enqueue a serialized notification payload."""
...
|