Uses of Class
io.netty5.handler.codec.http2.Http2ConnectionHandler
-
Packages that use Http2ConnectionHandler Package Description io.netty5.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of Http2ConnectionHandler in io.netty5.handler.codec.http2
Classes in io.netty5.handler.codec.http2 with type parameters of type Http2ConnectionHandler Modifier and Type Class Description class
AbstractHttp2ConnectionHandlerBuilder<T extends Http2ConnectionHandler,B extends AbstractHttp2ConnectionHandlerBuilder<T,B>>
Abstract base class which defines commonly used features required to buildHttp2ConnectionHandler
instances.Subclasses of Http2ConnectionHandler in io.netty5.handler.codec.http2 Modifier and Type Class Description class
Http2FrameCodec
This API is very immature. The Http2Connection-based API is currently preferred over this API.class
HttpToHttp2ConnectionHandler
Translates HTTP/1.x object writes into HTTP/2 frames.Methods in io.netty5.handler.codec.http2 that return Http2ConnectionHandler Modifier and Type Method Description Http2ConnectionHandler
Http2ConnectionHandlerBuilder. build()
protected Http2ConnectionHandler
Http2ConnectionHandlerBuilder. build(Http2ConnectionDecoder decoder, Http2ConnectionEncoder encoder, Http2Settings initialSettings)
Constructors in io.netty5.handler.codec.http2 with parameters of type Http2ConnectionHandler Constructor Description Http2ClientUpgradeCodec(Http2ConnectionHandler connectionHandler)
Creates the codec using a default name for the connection handler when adding to the pipeline.Http2ClientUpgradeCodec(Http2ConnectionHandler connectionHandler, Http2MultiplexHandler http2MultiplexHandler)
Creates the codec using a default name for the connection handler when adding to the pipeline.Http2ClientUpgradeCodec(String handlerName, Http2ConnectionHandler connectionHandler)
Creates the codec providing an upgrade to the given handler for HTTP/2.Http2ClientUpgradeCodec(String handlerName, Http2ConnectionHandler connectionHandler, Http2MultiplexHandler http2MultiplexHandler)
Creates the codec providing an upgrade to the given handler for HTTP/2.Http2ServerUpgradeCodec(Http2ConnectionHandler connectionHandler)
Creates the codec using a default name for the connection handler when adding to the pipeline.Http2ServerUpgradeCodec(String handlerName, Http2ConnectionHandler connectionHandler)
Creates the codec providing an upgrade to the given handler for HTTP/2.
-