Uses of Interface
io.netty.handler.codec.http2.Http2FrameWriter
-
Packages that use Http2FrameWriter Package Description io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of Http2FrameWriter in io.netty.handler.codec.http2
Subinterfaces of Http2FrameWriter in io.netty.handler.codec.http2 Modifier and Type Interface Description interface
Http2ConnectionEncoder
Handler for outbound HTTP/2 traffic.Classes in io.netty.handler.codec.http2 that implement Http2FrameWriter Modifier and Type Class Description class
CompressorHttp2ConnectionEncoder
A decorating HTTP2 encoder that will compress data frames according to thecontent-encoding
header for each stream.class
DecoratingHttp2ConnectionEncoder
A decorator around anotherHttp2ConnectionEncoder
instance.class
DecoratingHttp2FrameWriter
Decorator around anotherHttp2FrameWriter
instance.class
DefaultHttp2ConnectionEncoder
Default implementation ofHttp2ConnectionEncoder
.class
DefaultHttp2FrameWriter
AHttp2FrameWriter
that supports all frame types defined by the HTTP/2 specification.(package private) class
Http2ControlFrameLimitEncoder
DecoratingHttp2ConnectionEncoder
which guards against a remote peer that will trigger a massive amount of control frames but will not consume our responses to these.class
Http2OutboundFrameLogger
Decorator around aHttp2FrameWriter
that logs all outbound frames before calling the writer.class
StreamBufferingEncoder
Implementation of aHttp2ConnectionEncoder
that dispatches all method call to anotherHttp2ConnectionEncoder
, untilSETTINGS_MAX_CONCURRENT_STREAMS
is reached.Fields in io.netty.handler.codec.http2 declared as Http2FrameWriter Modifier and Type Field Description private Http2FrameWriter
DecoratingHttp2FrameWriter. delegate
private Http2FrameWriter
DefaultHttp2ConnectionEncoder. frameWriter
private Http2FrameWriter
DefaultHttp2LocalFlowController. frameWriter
private Http2FrameWriter
Http2FrameCodecBuilder. frameWriter
private Http2FrameWriter
Http2MultiplexCodecBuilder. frameWriter
Deprecated.private Http2FrameWriter
Http2OutboundFrameLogger. writer
Methods in io.netty.handler.codec.http2 that return Http2FrameWriter Modifier and Type Method Description Http2FrameWriter
DecoratingHttp2ConnectionEncoder. frameWriter()
Http2FrameWriter
DefaultHttp2ConnectionEncoder. frameWriter()
Http2FrameWriter
Http2ConnectionEncoder. frameWriter()
Provides direct access to the underlying frame writer object.protected Http2FrameWriter
Http2ConnectionHandler. frameWriter()
Methods in io.netty.handler.codec.http2 with parameters of type Http2FrameWriter Modifier and Type Method Description DefaultHttp2LocalFlowController
DefaultHttp2LocalFlowController. frameWriter(Http2FrameWriter frameWriter)
Http2LocalFlowController
DelegatingDecompressorFrameListener.ConsumedBytesConverter. frameWriter(Http2FrameWriter frameWriter)
(package private) Http2FrameCodecBuilder
Http2FrameCodecBuilder. frameWriter(Http2FrameWriter frameWriter)
Http2LocalFlowController
Http2LocalFlowController. frameWriter(Http2FrameWriter frameWriter)
Sets the writer to be use for sendingWINDOW_UPDATE
frames.(package private) Http2MultiplexCodecBuilder
Http2MultiplexCodecBuilder. frameWriter(Http2FrameWriter frameWriter)
Deprecated.private static ChannelFuture
DefaultHttp2ConnectionEncoder. sendHeaders(Http2FrameWriter frameWriter, ChannelHandlerContext ctx, int streamId, Http2Headers headers, boolean hasPriority, int streamDependency, short weight, boolean exclusive, int padding, boolean endOfStream, ChannelPromise promise)
Write headers viaHttp2FrameWriter
.Constructors in io.netty.handler.codec.http2 with parameters of type Http2FrameWriter Constructor Description DecoratingHttp2FrameWriter(Http2FrameWriter delegate)
DefaultHttp2ConnectionEncoder(Http2Connection connection, Http2FrameWriter frameWriter)
Http2OutboundFrameLogger(Http2FrameWriter writer, Http2FrameLogger logger)
-