--- a/src/java.net.http/share/classes/jdk/internal/net/http/Http2Connection.java Thu Feb 22 17:33:21 2018 +0000
+++ b/src/java.net.http/share/classes/jdk/internal/net/http/Http2Connection.java Fri Feb 23 16:25:32 2018 +0000
@@ -1191,6 +1191,12 @@
private static final Set<String> PSEUDO_HEADERS =
Set.of(":authority", ":method", ":path", ":scheme", ":status");
+ /**
+ * Called when END_HEADERS was received. This consumer may be invoked
+ * again after reset() is called, but for a whole new set of headers.
+ */
+ void reset() { }
+
@Override
public void onDecoded(CharSequence name, CharSequence value)
throws UncheckedIOException