One queued notification awaiting injection into the parent's conversation. ``value`` is the literal user-role message text (chapter-shaped XML for the ``"task-notification"`` mode).
| 29 | |
| 30 | @dataclass(frozen=True) |
| 31 | class PendingNotification: |
| 32 | """One queued notification awaiting injection into the parent's |
| 33 | conversation. ``value`` is the literal user-role message text |
| 34 | (chapter-shaped XML for the ``"task-notification"`` mode).""" |
| 35 | |
| 36 | value: str |
| 37 | mode: NotificationMode = "task-notification" |
| 38 | |
| 39 | |
| 40 | _lock = threading.RLock() |
no outgoing calls
no test coverage detected