The full HTTP response has been read. Note: If response streaming is active, this event fires after the entire body has been streamed. HTTP trailers, if present, have not been transmitted to the client yet and can still be modified.
| 41 | |
| 42 | @dataclass |
| 43 | class HttpResponseHook(commands.StartHook): |
| 44 | """ |
| 45 | The full HTTP response has been read. |
| 46 | |
| 47 | Note: If response streaming is active, this event fires after the entire body has been streamed. |
| 48 | HTTP trailers, if present, have not been transmitted to the client yet and can still be modified. |
| 49 | """ |
| 50 | |
| 51 | name = "response" |
| 52 | flow: http.HTTPFlow |
| 53 | |
| 54 | |
| 55 | @dataclass |
no outgoing calls
searching dependent graphs…