Package io.netty.handler.codec.http2
Interface Http2HeadersEncoder.Configuration
-
- All Known Implementing Classes:
DefaultHttp2HeadersEncoder
- Enclosing interface:
- Http2HeadersEncoder
public static interface Http2HeadersEncoder.ConfigurationConfiguration related elements for theHttp2HeadersEncoderinterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longmaxHeaderListSize()Represents the value for SETTINGS_MAX_HEADER_LIST_SIZE.voidmaxHeaderListSize(long max)Represents the value for SETTINGS_MAX_HEADER_LIST_SIZE.longmaxHeaderTableSize()Represents the value for SETTINGS_HEADER_TABLE_SIZE.voidmaxHeaderTableSize(long max)Represents the value for SETTINGS_HEADER_TABLE_SIZE.
-
-
-
Method Detail
-
maxHeaderTableSize
void maxHeaderTableSize(long max) throws Http2ExceptionRepresents the value for SETTINGS_HEADER_TABLE_SIZE. This method should only be called by Netty (not users) as a result of a receiving aSETTINGSframe.- Throws:
Http2Exception
-
maxHeaderTableSize
long maxHeaderTableSize()
Represents the value for SETTINGS_HEADER_TABLE_SIZE. The initial value returned by this method must beHttp2CodecUtil.DEFAULT_HEADER_TABLE_SIZE.
-
maxHeaderListSize
void maxHeaderListSize(long max) throws Http2ExceptionRepresents the value for SETTINGS_MAX_HEADER_LIST_SIZE. This method should only be called by Netty (not users) as a result of a receiving aSETTINGSframe.- Throws:
Http2Exception
-
maxHeaderListSize
long maxHeaderListSize()
Represents the value for SETTINGS_MAX_HEADER_LIST_SIZE.
-
-