Outbound metadata plus whether abandoning the request sends a courtesy `notifications/cancelled`.
| 192 | |
| 193 | @dataclass(slots=True, frozen=True) |
| 194 | class _OutboundPlan: |
| 195 | """Outbound metadata plus whether abandoning the request sends a courtesy `notifications/cancelled`.""" |
| 196 | |
| 197 | metadata: MessageMetadata |
| 198 | cancel_on_abandon: bool |
| 199 | |
| 200 | |
| 201 | def _plan_outbound(related_request_id: RequestId | None, opts: CallOptions | None) -> _OutboundPlan: |
no outgoing calls