(String connectionId, Input input, Output output)
| 52 | private volatile boolean headersEndStream = false; |
| 53 | |
| 54 | Http2Parser(String connectionId, Input input, Output output) { |
| 55 | this.connectionId = connectionId; |
| 56 | this.input = input; |
| 57 | this.output = output; |
| 58 | this.hpackDecoder = output.getHpackDecoder(); |
| 59 | } |
| 60 | |
| 61 | |
| 62 | /** |
nothing calls this directly
no test coverage detected