Signal to the HTTP layer that this stream is done processing and can be dropped from memory.
| 151 | |
| 152 | @dataclass |
| 153 | class DropStream(HttpCommand): |
| 154 | """Signal to the HTTP layer that this stream is done processing and can be dropped from memory.""" |
| 155 | |
| 156 | stream_id: StreamId |
| 157 | |
| 158 | |
| 159 | class HttpStream(layer.Layer): |
no outgoing calls
no test coverage detected
searching dependent graphs…