public final class Http3ClientConnectionHandler extends Http3ConnectionHandler
| Constructor and Description |
|---|
Http3ClientConnectionHandler()
Create a new instance.
|
Http3ClientConnectionHandler(io.netty.channel.ChannelHandler inboundControlStreamHandler,
LongFunction<io.netty.channel.ChannelHandler> pushStreamHandlerFactory,
LongFunction<io.netty.channel.ChannelHandler> unknownInboundStreamHandlerFactory,
Http3SettingsFrame localSettings,
boolean disableQpackDynamicTable)
Create a new instance.
|
channelActive, channelRead, handlerAdded, isGoAwayReceived, isSharable, newCodecchannelInactive, channelReadComplete, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaught, userEventTriggeredensureNotSharable, handlerRemovedpublic Http3ClientConnectionHandler()
public Http3ClientConnectionHandler(io.netty.channel.ChannelHandler inboundControlStreamHandler,
LongFunction<io.netty.channel.ChannelHandler> pushStreamHandlerFactory,
LongFunction<io.netty.channel.ChannelHandler> unknownInboundStreamHandlerFactory,
Http3SettingsFrame localSettings,
boolean disableQpackDynamicTable)
inboundControlStreamHandler - the ChannelHandler which will be notified about
Http3RequestStreamFrames or null if the user is not
interested in these.pushStreamHandlerFactory - the LongFunction that will provide a custom
ChannelHandler for push streams null if no special
handling should be done. When present, push ID will be passed as an
argument to the LongFunction.unknownInboundStreamHandlerFactory - the LongFunction that will provide a custom
ChannelHandler for unknown inbound stream types or
null if no special handling should be done.localSettings - the local Http3SettingsFrame that should be sent to the
remote peer or null if the default settings should be used.disableQpackDynamicTable - If QPACK dynamic table should be disabled.Copyright © 2020–2022 The Netty Project. All rights reserved.