Uses of Interface
io.netty.handler.codec.http2.Http2ConnectionDecoder
-
Packages that use Http2ConnectionDecoder Package Description io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of Http2ConnectionDecoder in io.netty.handler.codec.http2
Classes in io.netty.handler.codec.http2 that implement Http2ConnectionDecoder Modifier and Type Class Description classDecoratingHttp2ConnectionDecoderDecorator around anotherHttp2ConnectionDecoderinstance.classDefaultHttp2ConnectionDecoderProvides the default implementation for processing inbound frame events and delegates to aHttp2FrameListener(package private) classHttp2EmptyDataFrameConnectionDecoderEnforce a limit on the maximum number of consecutive empty DATA frames (without end_of_stream flag) that are allowed before the connection will be closed.(package private) classHttp2MaxRstFrameDecoderEnforce a limit on the maximum number of RST frames that are allowed per a window before the connection will be closed with a GO_AWAY frame.Fields in io.netty.handler.codec.http2 declared as Http2ConnectionDecoder Modifier and Type Field Description private Http2ConnectionDecoderAbstractHttp2ConnectionHandlerBuilder. decoderprivate Http2ConnectionDecoderHttp2ConnectionHandler. decoderprivate Http2ConnectionDecoderDecoratingHttp2ConnectionDecoder. delegateMethods in io.netty.handler.codec.http2 that return Http2ConnectionDecoder Modifier and Type Method Description protected Http2ConnectionDecoderAbstractHttp2ConnectionHandlerBuilder. decoder()Returns theHttp2ConnectionDecoderto use.Http2ConnectionDecoderHttp2ConnectionHandler. decoder()Methods in io.netty.handler.codec.http2 with parameters of type Http2ConnectionDecoder Modifier and Type Method Description protected abstract TAbstractHttp2ConnectionHandlerBuilder. build(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder, Http2Settings initialSettings)Implement this method to create a newHttp2ConnectionHandleror its subtype instance.protected Http2ConnectionHandlerHttp2ConnectionHandlerBuilder. build(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder, Http2Settings initialSettings)protected Http2FrameCodecHttp2FrameCodecBuilder. build(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder, Http2Settings initialSettings)protected Http2MultiplexCodecHttp2MultiplexCodecBuilder. build(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder, Http2Settings initialSettings)Deprecated.protected HttpToHttp2ConnectionHandlerHttpToHttp2ConnectionHandlerBuilder. build(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder, Http2Settings initialSettings)private TAbstractHttp2ConnectionHandlerBuilder. buildFromCodec(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder)protected BAbstractHttp2ConnectionHandlerBuilder. codec(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder)Sets theHttp2ConnectionDecoderandHttp2ConnectionEncoderto use.Http2ConnectionHandlerBuilderHttp2ConnectionHandlerBuilder. codec(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder)HttpToHttp2ConnectionHandlerBuilderHttpToHttp2ConnectionHandlerBuilder. codec(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder)Constructors in io.netty.handler.codec.http2 with parameters of type Http2ConnectionDecoder Constructor Description DecoratingHttp2ConnectionDecoder(Http2ConnectionDecoder delegate)Http2ConnectionHandler(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder, Http2Settings initialSettings)Http2ConnectionHandler(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder, Http2Settings initialSettings, boolean decoupleCloseAndGoAway)Http2ConnectionHandler(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder, Http2Settings initialSettings, boolean decoupleCloseAndGoAway, boolean flushPreface)Http2EmptyDataFrameConnectionDecoder(Http2ConnectionDecoder delegate, int maxConsecutiveEmptyFrames)Http2FrameCodec(Http2ConnectionEncoder encoder, Http2ConnectionDecoder decoder, Http2Settings initialSettings, boolean decoupleCloseAndGoAway, boolean flushPreface)Http2MaxRstFrameDecoder(Http2ConnectionDecoder delegate, int maxRstFramesPerWindow, int secondsPerWindow)Http2MultiplexCodec(Http2ConnectionEncoder encoder, Http2ConnectionDecoder decoder, Http2Settings initialSettings, ChannelHandler inboundStreamHandler, ChannelHandler upgradeStreamHandler, boolean decoupleCloseAndGoAway, boolean flushPreface)Deprecated.HttpToHttp2ConnectionHandler(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder, Http2Settings initialSettings, boolean validateHeaders)HttpToHttp2ConnectionHandler(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder, Http2Settings initialSettings, boolean validateHeaders, boolean decoupleCloseAndGoAway)HttpToHttp2ConnectionHandler(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder, Http2Settings initialSettings, boolean validateHeaders, boolean decoupleCloseAndGoAway, boolean flushPreface, HttpScheme httpScheme)HttpToHttp2ConnectionHandler(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder, Http2Settings initialSettings, boolean validateHeaders, boolean decoupleCloseAndGoAway, HttpScheme httpScheme)
-