Uses of Interface
io.netty.handler.codec.http2.Http2FrameListener
Packages that use Http2FrameListener
-
Uses of Http2FrameListener in io.netty.handler.codec.http2
Classes in io.netty.handler.codec.http2 that implement Http2FrameListenerModifier and TypeClassDescriptionprivate final classHandles all inbound frames from the network.private final classclassAn HTTP2 frame listener that will decompress data frames according to thecontent-encodingheader for each stream.(package private) final classEnforce 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.classThis class bringsHttp2Connection.ListenerandHttp2FrameListenertogether to provide NOOP implementation so inheriting classes can selectively choose which methods to override.classConvenience class that provides no-op implementations for all methods ofHttp2FrameListener.private final classclassProvides a decorator around aHttp2FrameListenerand delegates all method calls(package private) final classclassThis adapter provides just header/data events from the HTTP message flow defined in [RFC 7540], Section 8.1.Fields in io.netty.handler.codec.http2 declared as Http2FrameListenerModifier and TypeFieldDescriptionprivate Http2FrameListenerAbstractHttp2ConnectionHandlerBuilder.frameListenerprivate Http2FrameListenerDefaultHttp2ConnectionDecoder.internalFrameListenerprivate Http2FrameListenerDefaultHttp2ConnectionDecoder.listenerprotected final Http2FrameListenerHttp2FrameListenerDecorator.listenerprivate final Http2FrameListenerInboundHttpToHttp2Adapter.listenerMethods in io.netty.handler.codec.http2 that return Http2FrameListenerModifier and TypeMethodDescriptionprotected Http2FrameListenerAbstractHttp2ConnectionHandlerBuilder.frameListener()Returns the listener of inbound frames.DecoratingHttp2ConnectionDecoder.frameListener()DefaultHttp2ConnectionDecoder.frameListener()Http2ConnectionDecoder.frameListener()Get theHttp2FrameListenerwhich will be notified when frames are decoded.Http2EmptyDataFrameConnectionDecoder.frameListener()Http2MaxRstFrameDecoder.frameListener()(package private) Http2FrameListenerHttp2EmptyDataFrameConnectionDecoder.frameListener0()(package private) Http2FrameListenerHttp2MaxRstFrameDecoder.frameListener0()Methods in io.netty.handler.codec.http2 with parameters of type Http2FrameListenerModifier and TypeMethodDescriptionprotected BAbstractHttp2ConnectionHandlerBuilder.frameListener(Http2FrameListener frameListener) Sets the listener of inbound frames.voidDecoratingHttp2ConnectionDecoder.frameListener(Http2FrameListener listener) voidDefaultHttp2ConnectionDecoder.frameListener(Http2FrameListener listener) voidHttp2ConnectionDecoder.frameListener(Http2FrameListener listener) Set theHttp2FrameListenerwhich will be notified when frames are decoded.Http2ConnectionHandlerBuilder.frameListener(Http2FrameListener frameListener) voidHttp2EmptyDataFrameConnectionDecoder.frameListener(Http2FrameListener listener) voidHttp2MaxRstFrameDecoder.frameListener(Http2FrameListener listener) HttpToHttp2ConnectionHandlerBuilder.frameListener(Http2FrameListener frameListener) (package private) static voidInboundHttpToHttp2Adapter.handle(ChannelHandlerContext ctx, Http2Connection connection, Http2FrameListener listener, FullHttpMessage message) (package private) abstract voidDefaultHttp2FrameReader.HeadersContinuation.processFragment(boolean endOfHeaders, ByteBuf fragment, int len, Http2FrameListener listener) Processes the next fragment for the current header block.private voidDefaultHttp2FrameReader.processPayloadState(ChannelHandlerContext ctx, ByteBuf in, Http2FrameListener listener) private voidDefaultHttp2FrameReader.readContinuationFrame(ByteBuf payload, Http2FrameListener listener) private voidDefaultHttp2FrameReader.readDataFrame(ChannelHandlerContext ctx, ByteBuf payload, Http2FrameListener listener) voidDefaultHttp2FrameReader.readFrame(ChannelHandlerContext ctx, ByteBuf input, Http2FrameListener listener) voidHttp2FrameReader.readFrame(ChannelHandlerContext ctx, ByteBuf input, Http2FrameListener listener) Attempts to read the next frame from the input buffer.voidHttp2InboundFrameLogger.readFrame(ChannelHandlerContext ctx, ByteBuf input, Http2FrameListener listener) private voidDefaultHttp2FrameReader.readGoAwayFrame(ChannelHandlerContext ctx, ByteBuf payload, Http2FrameListener listener) private voidDefaultHttp2FrameReader.readHeadersFrame(ChannelHandlerContext ctx, ByteBuf payload, Http2FrameListener listener) private voidDefaultHttp2FrameReader.readPingFrame(ChannelHandlerContext ctx, long data, Http2FrameListener listener) private voidDefaultHttp2FrameReader.readPriorityFrame(ChannelHandlerContext ctx, ByteBuf payload, Http2FrameListener listener) private voidDefaultHttp2FrameReader.readPushPromiseFrame(ChannelHandlerContext ctx, ByteBuf payload, Http2FrameListener listener) private voidDefaultHttp2FrameReader.readRstStreamFrame(ChannelHandlerContext ctx, ByteBuf payload, Http2FrameListener listener) private voidDefaultHttp2FrameReader.readSettingsFrame(ChannelHandlerContext ctx, ByteBuf payload, Http2FrameListener listener) private voidDefaultHttp2FrameReader.readUnknownFrame(ChannelHandlerContext ctx, ByteBuf payload, Http2FrameListener listener) private voidDefaultHttp2FrameReader.readWindowUpdateFrame(ChannelHandlerContext ctx, ByteBuf payload, Http2FrameListener listener) Constructors in io.netty.handler.codec.http2 with parameters of type Http2FrameListenerModifierConstructorDescriptionDelegatingDecompressorFrameListener(Http2Connection connection, Http2FrameListener listener) Deprecated.DelegatingDecompressorFrameListener(Http2Connection connection, Http2FrameListener listener, boolean strict) DelegatingDecompressorFrameListener(Http2Connection connection, Http2FrameListener listener, boolean strict, int maxAllocation) Create a new instance.DelegatingDecompressorFrameListener(Http2Connection connection, Http2FrameListener listener, int maxAllocation) Create a new instance.(package private)Http2Decompressor(EmbeddedChannel decompressor, Http2Connection connection, Http2FrameListener listener) (package private)Http2EmptyDataFrameListener(Http2FrameListener listener, int maxConsecutiveEmptyFrames) (package private)Http2MaxRstFrameListener(Http2FrameListener listener, int maxRstFramesPerWindow, int secondsPerWindow) InboundHttpToHttp2Adapter(Http2Connection connection, Http2FrameListener listener)
DelegatingDecompressorFrameListener(Http2Connection, Http2FrameListener, int)