Uses of Interface
io.netty.handler.codec.http2.Http2FrameListener
-
Packages that use Http2FrameListener Package Description io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of Http2FrameListener in io.netty.handler.codec.http2
Classes in io.netty.handler.codec.http2 that implement Http2FrameListener Modifier and Type Class Description private classDefaultHttp2ConnectionDecoder.FrameReadListenerHandles all inbound frames from the network.private classDefaultHttp2ConnectionDecoder.PrefaceFrameListenerclassDelegatingDecompressorFrameListenerAn HTTP2 frame listener that will decompress data frames according to thecontent-encodingheader for each stream.(package private) classHttp2EmptyDataFrameListenerEnforce 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.classHttp2EventAdapterThis class bringsHttp2Connection.ListenerandHttp2FrameListenertogether to provide NOOP implementation so inheriting classes can selectively choose which methods to override.classHttp2FrameAdapterConvenience class that provides no-op implementations for all methods ofHttp2FrameListener.private classHttp2FrameCodec.FrameListenerclassHttp2FrameListenerDecoratorProvides a decorator around aHttp2FrameListenerand delegates all method callsclassInboundHttp2ToHttpAdapterThis 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 Http2FrameListener Modifier and Type Field Description private Http2FrameListenerAbstractHttp2ConnectionHandlerBuilder. frameListenerprivate Http2FrameListenerDefaultHttp2ConnectionDecoder. internalFrameListenerprivate Http2FrameListenerDefaultHttp2ConnectionDecoder. listenerprotected Http2FrameListenerHttp2FrameListenerDecorator. listenerprivate Http2FrameListenerInboundHttpToHttp2Adapter. listenerMethods in io.netty.handler.codec.http2 that return Http2FrameListener Modifier and Type Method Description protected Http2FrameListenerAbstractHttp2ConnectionHandlerBuilder. frameListener()Returns the listener of inbound frames.Http2FrameListenerDecoratingHttp2ConnectionDecoder. frameListener()Http2FrameListenerDefaultHttp2ConnectionDecoder. frameListener()Http2FrameListenerHttp2ConnectionDecoder. frameListener()Get theHttp2FrameListenerwhich will be notified when frames are decoded.Http2FrameListenerHttp2EmptyDataFrameConnectionDecoder. frameListener()(package private) Http2FrameListenerHttp2EmptyDataFrameConnectionDecoder. frameListener0()(package private) Http2FrameListenerDefaultHttp2ConnectionDecoder. internalFrameListener()Methods in io.netty.handler.codec.http2 with parameters of type Http2FrameListener Modifier and Type Method Description protected 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.Http2ConnectionHandlerBuilderHttp2ConnectionHandlerBuilder. frameListener(Http2FrameListener frameListener)voidHttp2EmptyDataFrameConnectionDecoder. frameListener(Http2FrameListener listener)HttpToHttp2ConnectionHandlerBuilderHttpToHttp2ConnectionHandlerBuilder. 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, int payloadEndIndex, Http2FrameListener listener)private voidDefaultHttp2FrameReader. readDataFrame(ChannelHandlerContext ctx, ByteBuf payload, int payloadEndIndex, 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 static voidDefaultHttp2FrameReader. readGoAwayFrame(ChannelHandlerContext ctx, ByteBuf payload, int payloadEndIndex, Http2FrameListener listener)private voidDefaultHttp2FrameReader. readHeadersFrame(ChannelHandlerContext ctx, ByteBuf payload, int payloadEndIndex, 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, int payloadEndIndex, 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, int payloadEndIndex, Http2FrameListener listener)private voidDefaultHttp2FrameReader. readWindowUpdateFrame(ChannelHandlerContext ctx, ByteBuf payload, Http2FrameListener listener)Constructors in io.netty.handler.codec.http2 with parameters of type Http2FrameListener Constructor Description DelegatingDecompressorFrameListener(Http2Connection connection, Http2FrameListener listener)DelegatingDecompressorFrameListener(Http2Connection connection, Http2FrameListener listener, boolean strict)Http2EmptyDataFrameListener(Http2FrameListener listener, int maxConsecutiveEmptyFrames)Http2FrameListenerDecorator(Http2FrameListener listener)InboundHttpToHttp2Adapter(Http2Connection connection, Http2FrameListener listener)
-