Uses of Interface
io.netty.handler.codec.http.HttpHeadersFactory
Packages that use HttpHeadersFactory
Package
Description
Encoder, decoder and their related message types for HTTP.
Encoder, decoder, session handler and their related message types for the SPDY protocol.
-
Uses of HttpHeadersFactory in io.netty.handler.codec.http
Classes in io.netty.handler.codec.http that implement HttpHeadersFactoryModifier and TypeClassDescriptionfinal class
A builder ofHttpHeadersFactory
instances, that itself implementsHttpHeadersFactory
.Fields in io.netty.handler.codec.http declared as HttpHeadersFactoryModifier and TypeFieldDescriptionprivate HttpHeadersFactory
HttpDecoderConfig.headersFactory
protected final HttpHeadersFactory
HttpObjectDecoder.headersFactory
private final HttpHeadersFactory
HttpServerUpgradeHandler.headersFactory
private HttpHeadersFactory
HttpDecoderConfig.trailersFactory
protected final HttpHeadersFactory
HttpObjectDecoder.trailersFactory
private final HttpHeadersFactory
HttpServerUpgradeHandler.trailersFactory
Methods in io.netty.handler.codec.http that return HttpHeadersFactoryModifier and TypeMethodDescriptionHttpDecoderConfig.getHeadersFactory()
HttpDecoderConfig.getTrailersFactory()
Methods in io.netty.handler.codec.http with parameters of type HttpHeadersFactoryModifier and TypeMethodDescriptionprotected boolean
HttpObjectDecoder.isValidating
(HttpHeadersFactory headersFactory) HttpDecoderConfig.setHeadersFactory
(HttpHeadersFactory headersFactory) Set theHttpHeadersFactory
to use when creating new HTTP headers objects.HttpDecoderConfig.setTrailersFactory
(HttpHeadersFactory trailersFactory) Set theHttpHeadersFactory
used to create HTTP trailers.Constructors in io.netty.handler.codec.http with parameters of type HttpHeadersFactoryModifierConstructorDescriptionDefaultFullHttpRequest
(HttpVersion httpVersion, HttpMethod method, String uri, ByteBuf content, HttpHeadersFactory headersFactory, HttpHeadersFactory trailersFactory) Create a full HTTP response with the given HTTP version, method, URI, contents, and factories for creating headers and trailers.DefaultFullHttpResponse
(HttpVersion version, HttpResponseStatus status, ByteBuf content, HttpHeadersFactory headersFactory, HttpHeadersFactory trailersFactory) Create an HTTP response with the given HTTP version, status, contents, and with headers and trailers created by the given header factories.protected
DefaultHttpMessage
(HttpVersion version, HttpHeadersFactory headersFactory) Creates a new instance.DefaultHttpRequest
(HttpVersion httpVersion, HttpMethod method, String uri, HttpHeadersFactory headersFactory) Creates a new instance.DefaultHttpResponse
(HttpVersion version, HttpResponseStatus status, HttpHeadersFactory headersFactory) Creates a new instance.DefaultLastHttpContent
(ByteBuf content, HttpHeadersFactory trailersFactory) Create a new last HTTP content message with the given contents, and trailing headers from the given factory.HttpServerUpgradeHandler
(HttpServerUpgradeHandler.SourceCodec sourceCodec, HttpServerUpgradeHandler.UpgradeCodecFactory upgradeCodecFactory, int maxContentLength, HttpHeadersFactory headersFactory, HttpHeadersFactory trailersFactory) Constructs the upgrader with the supported codecs. -
Uses of HttpHeadersFactory in io.netty.handler.codec.spdy
Fields in io.netty.handler.codec.spdy declared as HttpHeadersFactoryModifier and TypeFieldDescriptionprivate final HttpHeadersFactory
SpdyHttpDecoder.headersFactory
private final HttpHeadersFactory
SpdyHttpDecoder.trailersFactory
Constructors in io.netty.handler.codec.spdy with parameters of type HttpHeadersFactoryModifierConstructorDescriptionSpdyHttpCodec
(SpdyVersion version, int maxContentLength, HttpHeadersFactory headersFactory, HttpHeadersFactory trailersFactory) Creates a new instance with the specified decoder options.protected
SpdyHttpDecoder
(SpdyVersion version, int maxContentLength, Map<Integer, FullHttpMessage> messageMap, HttpHeadersFactory headersFactory, HttpHeadersFactory trailersFactory) Creates a new instance with the specified parameters.