Package | Description |
---|---|
io.netty.handler.codec.http2 |
Handlers for sending and receiving HTTP/2 frames.
|
Modifier and Type | Interface and Description |
---|---|
interface |
Http2ConnectionEncoder
Handler for outbound HTTP/2 traffic.
|
Modifier and Type | Class and Description |
---|---|
class |
CompressorHttp2ConnectionEncoder
A decorating HTTP2 encoder that will compress data frames according to the
content-encoding header for each
stream. |
class |
DecoratingHttp2ConnectionEncoder
A decorator around another
Http2ConnectionEncoder instance. |
class |
DecoratingHttp2FrameWriter
Decorator around another
Http2FrameWriter instance. |
class |
DefaultHttp2ConnectionEncoder
Default implementation of
Http2ConnectionEncoder . |
class |
DefaultHttp2FrameWriter
A
Http2FrameWriter that supports all frame types defined by the HTTP/2 specification. |
class |
Http2OutboundFrameLogger
Decorator around a
Http2FrameWriter that logs all outbound frames before calling the
writer. |
class |
StreamBufferingEncoder
Implementation of a
Http2ConnectionEncoder that dispatches all method call to another
Http2ConnectionEncoder , until SETTINGS_MAX_CONCURRENT_STREAMS is reached. |
Modifier and Type | Field and Description |
---|---|
private Http2FrameWriter |
DecoratingHttp2FrameWriter.delegate |
private Http2FrameWriter |
DefaultHttp2LocalFlowController.frameWriter |
private Http2FrameWriter |
DefaultHttp2ConnectionEncoder.frameWriter |
private Http2FrameWriter |
Http2OutboundFrameLogger.writer |
Modifier and Type | Method and Description |
---|---|
Http2FrameWriter |
DecoratingHttp2ConnectionEncoder.frameWriter() |
private Http2FrameWriter |
Http2CodecBuilder.frameWriter() |
Http2FrameWriter |
DefaultHttp2ConnectionEncoder.frameWriter() |
Http2FrameWriter |
Http2ConnectionEncoder.frameWriter()
Provides direct access to the underlying frame writer object.
|
protected Http2FrameWriter |
Http2ConnectionHandler.frameWriter() |
Modifier and Type | Method and Description |
---|---|
DefaultHttp2LocalFlowController |
DefaultHttp2LocalFlowController.frameWriter(Http2FrameWriter frameWriter) |
Http2LocalFlowController |
Http2LocalFlowController.frameWriter(Http2FrameWriter frameWriter)
Sets the writer to be use for sending
WINDOW_UPDATE frames. |
Http2LocalFlowController |
DelegatingDecompressorFrameListener.ConsumedBytesConverter.frameWriter(Http2FrameWriter frameWriter) |
Constructor and Description |
---|
DecoratingHttp2FrameWriter(Http2FrameWriter delegate) |
DefaultHttp2ConnectionEncoder(Http2Connection connection,
Http2FrameWriter frameWriter) |
Http2Codec(boolean server,
Http2StreamChannelBootstrap bootstrap,
Http2FrameWriter frameWriter,
Http2FrameLogger frameLogger,
Http2Settings initialSettings) |
Http2FrameCodec(boolean server,
Http2FrameWriter frameWriter,
Http2FrameLogger frameLogger,
Http2Settings initialSettings) |
Http2OutboundFrameLogger(Http2FrameWriter writer,
Http2FrameLogger logger) |