(
self, parent: ChannelOwner, type: str, guid: str, initializer: Dict
)
| 105 | |
| 106 | class APIRequestContext(ChannelOwner): |
| 107 | def __init__( |
| 108 | self, parent: ChannelOwner, type: str, guid: str, initializer: Dict |
| 109 | ) -> None: |
| 110 | super().__init__(parent, type, guid, initializer) |
| 111 | self._tracing: Tracing = from_channel(initializer["tracing"]) |
| 112 | self._close_reason: Optional[str] = None |
| 113 | self._timeout_settings = TimeoutSettings(None) |
| 114 | |
| 115 | async def dispose(self, reason: str = None) -> None: |
| 116 | self._close_reason = reason |
nothing calls this directly
no test coverage detected