Http2FrameCodecBuilder
together with Http2MultiplexHandler
.@Deprecated @UnstableApi public class Http2MultiplexCodecBuilder extends AbstractHttp2ConnectionHandlerBuilder<Http2MultiplexCodec,Http2MultiplexCodecBuilder>
Http2MultiplexCodec
.限定符和类型 | 方法和说明 |
---|---|
Http2MultiplexCodecBuilder |
autoAckPingFrame(boolean autoAckPingFrame)
已过时。
Determine if PING frame should automatically be acknowledged or not.
|
Http2MultiplexCodecBuilder |
autoAckSettingsFrame(boolean autoAckSettings)
已过时。
Determine if settings frame should automatically be acknowledged and applied.
|
Http2MultiplexCodec |
build()
已过时。
Create a new
Http2ConnectionHandler . |
protected Http2MultiplexCodec |
build(Http2ConnectionDecoder decoder,
Http2ConnectionEncoder encoder,
Http2Settings initialSettings)
已过时。
Implement this method to create a new
Http2ConnectionHandler or its subtype instance. |
int |
decoderEnforceMaxConsecutiveEmptyDataFrames()
已过时。
Returns the maximum number of consecutive empty DATA frames (without end_of_stream flag) that are allowed before
the connection is closed.
|
Http2MultiplexCodecBuilder |
decoderEnforceMaxConsecutiveEmptyDataFrames(int maxConsecutiveEmptyFrames)
已过时。
Sets the maximum number of consecutive empty DATA frames (without end_of_stream flag) that are allowed before
the connection is closed.
|
Http2MultiplexCodecBuilder |
decoderEnforceMaxRstFramesPerWindow(int maxRstFramesPerWindow,
int secondsPerWindow)
已过时。
Sets the maximum number RST frames that are allowed per window before
the connection is closed.
|
Http2MultiplexCodecBuilder |
decoupleCloseAndGoAway(boolean decoupleCloseAndGoAway)
已过时。
Determine if the
ChannelOutboundInvoker.close() should be coupled with goaway and graceful close. |
boolean |
encoderEnforceMaxConcurrentStreams()
已过时。
Returns if the encoder should queue frames if the maximum number of concurrent streams
would otherwise be exceeded.
|
Http2MultiplexCodecBuilder |
encoderEnforceMaxConcurrentStreams(boolean encoderEnforceMaxConcurrentStreams)
已过时。
Sets if the encoder should queue frames if the maximum number of concurrent streams
would otherwise be exceeded.
|
int |
encoderEnforceMaxQueuedControlFrames()
已过时。
Returns the maximum number of queued control frames that are allowed before the connection is closed.
|
Http2MultiplexCodecBuilder |
encoderEnforceMaxQueuedControlFrames(int maxQueuedControlFrames)
已过时。
Sets the maximum number of queued control frames that are allowed before the connection is closed.
|
Http2MultiplexCodecBuilder |
encoderIgnoreMaxHeaderListSize(boolean ignoreMaxHeaderListSize)
已过时。
Sets if the SETTINGS_MAX_HEADER_LIST_SIZE
should be ignored when encoding headers.
|
Http2MultiplexCodecBuilder |
flushPreface(boolean flushPreface)
已过时。
|
static Http2MultiplexCodecBuilder |
forClient(ChannelHandler childHandler)
已过时。
Creates a builder for an HTTP/2 client.
|
static Http2MultiplexCodecBuilder |
forServer(ChannelHandler childHandler)
已过时。
Creates a builder for an HTTP/2 server.
|
Http2FrameLogger |
frameLogger()
已过时。
Returns the logger that is used for the encoder and decoder.
|
Http2MultiplexCodecBuilder |
frameLogger(Http2FrameLogger frameLogger)
已过时。
Sets the logger that is used for the encoder and decoder.
|
long |
gracefulShutdownTimeoutMillis()
已过时。
Returns the graceful shutdown timeout of the
Http2Connection in milliseconds. |
Http2MultiplexCodecBuilder |
gracefulShutdownTimeoutMillis(long gracefulShutdownTimeoutMillis)
已过时。
Sets the graceful shutdown timeout of the
Http2Connection in milliseconds. |
Http2HeadersEncoder.SensitivityDetector |
headerSensitivityDetector()
已过时。
Returns the
Http2HeadersEncoder.SensitivityDetector to use. |
Http2MultiplexCodecBuilder |
headerSensitivityDetector(Http2HeadersEncoder.SensitivityDetector headerSensitivityDetector)
已过时。
Sets the
Http2HeadersEncoder.SensitivityDetector to use. |
Http2MultiplexCodecBuilder |
initialHuffmanDecodeCapacity(int initialHuffmanDecodeCapacity)
已过时。
|
Http2Settings |
initialSettings()
已过时。
Sets the
Http2Settings to use for the initial connection settings exchange. |
Http2MultiplexCodecBuilder |
initialSettings(Http2Settings settings)
已过时。
Sets the
Http2Settings to use for the initial connection settings exchange. |
boolean |
isServer()
已过时。
Returns if
AbstractHttp2ConnectionHandlerBuilder.build() will to create a Http2Connection in server mode (true )
or client mode (false ). |
boolean |
isValidateHeaders()
已过时。
Returns if HTTP headers should be validated according to
RFC 7540, 8.1.2.6.
|
int |
maxReservedStreams()
已过时。
Get the maximum number of streams which can be in the reserved state at any given time.
|
Http2MultiplexCodecBuilder |
maxReservedStreams(int maxReservedStreams)
已过时。
Set the maximum number of streams which can be in the reserved state at any given time.
|
Http2MultiplexCodecBuilder |
validateHeaders(boolean validateHeaders)
已过时。
Sets if HTTP headers should be validated according to
RFC 7540, 8.1.2.6.
|
Http2MultiplexCodecBuilder |
withUpgradeStreamHandler(ChannelHandler upgradeStreamHandler)
已过时。
|
codec, connection, connection, decoder, decoupleCloseAndGoAway, encoder, flushPreface, frameListener, frameListener, isAutoAckPingFrame, isAutoAckSettingsFrame, promisedRequestVerifier, promisedRequestVerifier, self, server
public static Http2MultiplexCodecBuilder forClient(ChannelHandler childHandler)
childHandler
- the handler added to channels for remotely-created streams. It must be
ChannelHandler.Sharable
.public static Http2MultiplexCodecBuilder forServer(ChannelHandler childHandler)
childHandler
- the handler added to channels for remotely-created streams. It must be
ChannelHandler.Sharable
.public Http2MultiplexCodecBuilder withUpgradeStreamHandler(ChannelHandler upgradeStreamHandler)
public Http2Settings initialSettings()
Http2Settings
to use for the initial connection settings exchange.public Http2MultiplexCodecBuilder initialSettings(Http2Settings settings)
Http2Settings
to use for the initial connection settings exchange.public long gracefulShutdownTimeoutMillis()
Http2Connection
in milliseconds. Returns -1 if the
timeout is indefinite.public Http2MultiplexCodecBuilder gracefulShutdownTimeoutMillis(long gracefulShutdownTimeoutMillis)
Http2Connection
in milliseconds.public boolean isServer()
AbstractHttp2ConnectionHandlerBuilder.build()
will to create a Http2Connection
in server mode (true
)
or client mode (false
).public int maxReservedStreams()
By default this value will be ignored on the server for local endpoint. This is because the RFC provides no way to explicitly communicate a limit to how many states can be in the reserved state, and instead relies on the peer to send RST_STREAM frames when they will be rejected.
public Http2MultiplexCodecBuilder maxReservedStreams(int maxReservedStreams)
public boolean isValidateHeaders()
public Http2MultiplexCodecBuilder validateHeaders(boolean validateHeaders)
public Http2FrameLogger frameLogger()
frameLogger
在类中 AbstractHttp2ConnectionHandlerBuilder<Http2MultiplexCodec,Http2MultiplexCodecBuilder>
Http2FrameLogger
if set, or null
if not set.public Http2MultiplexCodecBuilder frameLogger(Http2FrameLogger frameLogger)
public boolean encoderEnforceMaxConcurrentStreams()
public Http2MultiplexCodecBuilder encoderEnforceMaxConcurrentStreams(boolean encoderEnforceMaxConcurrentStreams)
public int encoderEnforceMaxQueuedControlFrames()
0
means no protection is in place.public Http2MultiplexCodecBuilder encoderEnforceMaxQueuedControlFrames(int maxQueuedControlFrames)
0
means no protection should be applied.public Http2HeadersEncoder.SensitivityDetector headerSensitivityDetector()
Http2HeadersEncoder.SensitivityDetector
to use.public Http2MultiplexCodecBuilder headerSensitivityDetector(Http2HeadersEncoder.SensitivityDetector headerSensitivityDetector)
Http2HeadersEncoder.SensitivityDetector
to use.public Http2MultiplexCodecBuilder encoderIgnoreMaxHeaderListSize(boolean ignoreMaxHeaderListSize)
encoderIgnoreMaxHeaderListSize
在类中 AbstractHttp2ConnectionHandlerBuilder<Http2MultiplexCodec,Http2MultiplexCodecBuilder>
ignoreMaxHeaderListSize
- true
to ignore
SETTINGS_MAX_HEADER_LIST_SIZE.@Deprecated public Http2MultiplexCodecBuilder initialHuffmanDecodeCapacity(int initialHuffmanDecodeCapacity)
public Http2MultiplexCodecBuilder autoAckSettingsFrame(boolean autoAckSettings)
public Http2MultiplexCodecBuilder autoAckPingFrame(boolean autoAckPingFrame)
public Http2MultiplexCodecBuilder decoupleCloseAndGoAway(boolean decoupleCloseAndGoAway)
ChannelOutboundInvoker.close()
should be coupled with goaway and graceful close.decoupleCloseAndGoAway
在类中 AbstractHttp2ConnectionHandlerBuilder<Http2MultiplexCodec,Http2MultiplexCodecBuilder>
decoupleCloseAndGoAway
- true
to make ChannelOutboundInvoker.close()
directly close the underlying
transport, and not attempt graceful closure via GOAWAY.this
.public Http2MultiplexCodecBuilder flushPreface(boolean flushPreface)
Channel
becomes active or not.
Client may choose to opt-out from this automatic behavior and manage flush manually if it's ready to send request frames immediately after the preface. It may help to avoid unnecessary latency.
flushPreface
在类中 AbstractHttp2ConnectionHandlerBuilder<Http2MultiplexCodec,Http2MultiplexCodecBuilder>
flushPreface
- true
to automatically flush, false otherwise
.this
.public int decoderEnforceMaxConsecutiveEmptyDataFrames()
0
means no protection is in place.public Http2MultiplexCodecBuilder decoderEnforceMaxConsecutiveEmptyDataFrames(int maxConsecutiveEmptyFrames)
0
means no protection should be applied.public Http2MultiplexCodecBuilder decoderEnforceMaxRstFramesPerWindow(int maxRstFramesPerWindow, int secondsPerWindow)
0
for any of the parameters means no protection should be applied.public Http2MultiplexCodec build()
Http2ConnectionHandler
.protected Http2MultiplexCodec build(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder, Http2Settings initialSettings)
Http2ConnectionHandler
or its subtype instance.
The return of this method will be subject to the following:
AbstractHttp2ConnectionHandlerBuilder.frameListener(Http2FrameListener)
will be set if not already set in the decoderAbstractHttp2ConnectionHandlerBuilder.gracefulShutdownTimeoutMillis(long)
will always be set