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 classA builder ofHttpHeadersFactoryinstances, that itself implementsHttpHeadersFactory.Fields in io.netty.handler.codec.http declared as HttpHeadersFactoryModifier and TypeFieldDescriptionprotected final HttpHeadersFactoryHttpObjectDecoder.headersFactoryprotected final HttpHeadersFactoryHttpObjectDecoder.trailersFactoryMethods 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 booleanHttpObjectDecoder.isValidating(HttpHeadersFactory headersFactory) HttpDecoderConfig.setHeadersFactory(HttpHeadersFactory headersFactory) Set theHttpHeadersFactoryto use when creating new HTTP headers objects.HttpDecoderConfig.setTrailersFactory(HttpHeadersFactory trailersFactory) Set theHttpHeadersFactoryused 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.protectedDefaultHttpMessage(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.HttpServerUpgradeHandler(HttpServerUpgradeHandler.SourceCodec sourceCodec, HttpServerUpgradeHandler.UpgradeCodecFactory upgradeCodecFactory, int maxContentLength, HttpHeadersFactory headersFactory, HttpHeadersFactory trailersFactory, boolean removeAfterFirstRequest) Constructs the upgrader with the supported codecs. -
Uses of HttpHeadersFactory in io.netty.handler.codec.spdy
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.protectedSpdyHttpDecoder(SpdyVersion version, int maxContentLength, Map<Integer, FullHttpMessage> messageMap, HttpHeadersFactory headersFactory, HttpHeadersFactory trailersFactory) Creates a new instance with the specified parameters.