Close the response and release the connection. Automatically called if the response body is read to completion.
(self)
| 231 | await self.close() |
| 232 | |
| 233 | async def close(self) -> None: |
| 234 | """ |
| 235 | Close the response and release the connection. |
| 236 | |
| 237 | Automatically called if the response body is read to completion. |
| 238 | """ |
| 239 | await self.response.aclose() |
| 240 | |
| 241 | |
| 242 | class ServerSentEvent: |