Skip to content

Commit

Permalink
Add missing methods to Http2ConnectionHandlerBuilder
Browse files Browse the repository at this point in the history
Motivation:
A previous commit added methods to AbstractHttp2ConnectionHandlerBuilder but forgot to expose them in Http2ConnectionHandlerBuilder.

Modifications:
- expose the new methods in Http2ConnectionHandlerBuilder

Result:
Http2ConnectionHandlerBuilder supports the new configuration options.
  • Loading branch information
Scottmitch committed Mar 8, 2017
1 parent 1e5d33f commit e18c85b
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ public Http2ConnectionHandlerBuilder connection(Http2Connection connection) {
return super.connection(connection);
}

@Override
public Http2ConnectionHandlerBuilder maxReservedStreams(int maxReservedStreams) {
return super.maxReservedStreams(maxReservedStreams);
}

@Override
public Http2ConnectionHandlerBuilder codec(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder) {
return super.codec(decoder, encoder);
Expand All @@ -72,6 +77,11 @@ public Http2ConnectionHandlerBuilder encoderEnforceMaxConcurrentStreams(
return super.encoderEnforceMaxConcurrentStreams(encoderEnforceMaxConcurrentStreams);
}

@Override
public Http2ConnectionHandlerBuilder encoderIgnoreMaxHeaderListSize(boolean encoderIgnoreMaxHeaderListSize) {
return super.encoderIgnoreMaxHeaderListSize(encoderIgnoreMaxHeaderListSize);
}

@Override
public Http2ConnectionHandlerBuilder headerSensitivityDetector(SensitivityDetector headerSensitivityDetector) {
return super.headerSensitivityDetector(headerSensitivityDetector);
Expand Down

0 comments on commit e18c85b

Please sign in to comment.