Package | Description |
---|---|
io.netty.handler.codec.http2 |
Handlers for sending and receiving HTTP/2 frames.
|
Modifier and Type | Class and Description |
---|---|
class |
DecoratingHttp2ConnectionDecoder
Decorator around another
Http2ConnectionDecoder instance. |
class |
DefaultHttp2ConnectionDecoder
Provides the default implementation for processing inbound frame events and delegates to a
Http2FrameListener
This class will read HTTP/2 frames and delegate the events to a Http2FrameListener
This interface enforces inbound flow control functionality through
Http2LocalFlowController |
Modifier and Type | Method and Description |
---|---|
Http2ConnectionDecoder |
Http2ConnectionHandler.decoder() |
protected Http2ConnectionDecoder |
AbstractHttp2ConnectionHandlerBuilder.decoder()
Returns the
Http2ConnectionDecoder to use. |
Modifier and Type | Method and Description |
---|---|
protected HttpToHttp2ConnectionHandler |
HttpToHttp2ConnectionHandlerBuilder.build(Http2ConnectionDecoder decoder,
Http2ConnectionEncoder encoder,
Http2Settings initialSettings) |
protected Http2ConnectionHandler |
Http2ConnectionHandlerBuilder.build(Http2ConnectionDecoder decoder,
Http2ConnectionEncoder encoder,
Http2Settings initialSettings) |
protected abstract T |
AbstractHttp2ConnectionHandlerBuilder.build(Http2ConnectionDecoder decoder,
Http2ConnectionEncoder encoder,
Http2Settings initialSettings)
Implement this method to create a new
Http2ConnectionHandler or its subtype instance. |
HttpToHttp2ConnectionHandlerBuilder |
HttpToHttp2ConnectionHandlerBuilder.codec(Http2ConnectionDecoder decoder,
Http2ConnectionEncoder encoder) |
Http2ConnectionHandlerBuilder |
Http2ConnectionHandlerBuilder.codec(Http2ConnectionDecoder decoder,
Http2ConnectionEncoder encoder) |
protected B |
AbstractHttp2ConnectionHandlerBuilder.codec(Http2ConnectionDecoder decoder,
Http2ConnectionEncoder encoder)
Sets the
Http2ConnectionDecoder and Http2ConnectionEncoder to use. |
Constructor and Description |
---|
DecoratingHttp2ConnectionDecoder(Http2ConnectionDecoder delegate) |
Http2ConnectionHandler(Http2ConnectionDecoder decoder,
Http2ConnectionEncoder encoder,
Http2Settings initialSettings) |
HttpToHttp2ConnectionHandler(Http2ConnectionDecoder decoder,
Http2ConnectionEncoder encoder,
Http2Settings initialSettings,
boolean validateHeaders) |
Copyright © 2008–2017 The Netty Project. All rights reserved.