The full HTTP request has been read. Note: If request streaming is active, this event fires after the entire body has been streamed. HTTP trailers, if present, have not been transmitted to the server yet and can still be modified. Enabling streaming may cause unexpected event seque
| 16 | |
| 17 | @dataclass |
| 18 | class HttpRequestHook(commands.StartHook): |
| 19 | """ |
| 20 | The full HTTP request has been read. |
| 21 | |
| 22 | Note: If request streaming is active, this event fires after the entire body has been streamed. |
| 23 | HTTP trailers, if present, have not been transmitted to the server yet and can still be modified. |
| 24 | Enabling streaming may cause unexpected event sequences: For example, `response` may now occur |
| 25 | before `request` because the server replied with "413 Payload Too Large" during upload. |
| 26 | """ |
| 27 | |
| 28 | name = "request" |
| 29 | flow: http.HTTPFlow |
| 30 | |
| 31 | |
| 32 | @dataclass |
no outgoing calls
searching dependent graphs…