Package | Description |
---|---|
io.netty.handler.codec.http2 |
Handlers for sending and receiving HTTP/2 frames.
|
Modifier and Type | Class and Description |
---|---|
class |
DelegatingDecompressorFrameListener
An HTTP2 frame listener that will decompress data frames according to the
content-encoding header for each
stream. |
class |
Http2EventAdapter
This class brings
Http2Connection.Listener and Http2FrameListener together to provide
NOOP implementation so inheriting classes can selectively choose which methods to override. |
class |
Http2FrameAdapter
Convenience class that provides no-op implementations for all methods of
Http2FrameListener . |
class |
Http2FrameListenerDecorator
Provides a decorator around a
Http2FrameListener and delegates all method calls |
class |
InboundHttp2ToHttpAdapter
This adapter provides just header/data events from the HTTP message flow defined
in [RFC 7540], Section 8.1.
|
Modifier and Type | Field and Description |
---|---|
protected Http2FrameListener |
Http2FrameListenerDecorator.listener |
Modifier and Type | Method and Description |
---|---|
Http2FrameListener |
Http2ConnectionDecoder.frameListener()
Get the
Http2FrameListener which will be notified when frames are decoded. |
protected Http2FrameListener |
AbstractHttp2ConnectionHandlerBuilder.frameListener()
Returns the listener of inbound frames.
|
Http2FrameListener |
DecoratingHttp2ConnectionDecoder.frameListener() |
Http2FrameListener |
DefaultHttp2ConnectionDecoder.frameListener() |
Modifier and Type | Method and Description |
---|---|
void |
Http2ConnectionDecoder.frameListener(Http2FrameListener listener)
Set the
Http2FrameListener which will be notified when frames are decoded. |
Http2ConnectionHandlerBuilder |
Http2ConnectionHandlerBuilder.frameListener(Http2FrameListener frameListener) |
protected B |
AbstractHttp2ConnectionHandlerBuilder.frameListener(Http2FrameListener frameListener)
Sets the listener of inbound frames.
|
HttpToHttp2ConnectionHandlerBuilder |
HttpToHttp2ConnectionHandlerBuilder.frameListener(Http2FrameListener frameListener) |
void |
DecoratingHttp2ConnectionDecoder.frameListener(Http2FrameListener listener) |
void |
DefaultHttp2ConnectionDecoder.frameListener(Http2FrameListener listener) |
void |
Http2InboundFrameLogger.readFrame(ChannelHandlerContext ctx,
ByteBuf input,
Http2FrameListener listener) |
void |
Http2FrameReader.readFrame(ChannelHandlerContext ctx,
ByteBuf input,
Http2FrameListener listener)
Attempts to read the next frame from the input buffer.
|
void |
DefaultHttp2FrameReader.readFrame(ChannelHandlerContext ctx,
ByteBuf input,
Http2FrameListener listener) |
Constructor and Description |
---|
DelegatingDecompressorFrameListener(Http2Connection connection,
Http2FrameListener listener) |
DelegatingDecompressorFrameListener(Http2Connection connection,
Http2FrameListener listener,
boolean strict) |
Http2FrameListenerDecorator(Http2FrameListener listener) |
InboundHttpToHttp2Adapter(Http2Connection connection,
Http2FrameListener listener) |
Copyright © 2008–2025 The Netty Project. All rights reserved.