Uses of Interface
io.netty.handler.codec.http.FullHttpMessage
Packages that use FullHttpMessage
Package
Description
Encoder, decoder and their related message types for HTTP.
Handlers for sending and receiving HTTP/2 frames.
Encoder, decoder, session handler and their related message types for the SPDY protocol.
-
Uses of FullHttpMessage in io.netty.handler.codec.http
Subinterfaces of FullHttpMessage in io.netty.handler.codec.httpModifier and TypeInterfaceDescriptioninterfaceCombine theHttpRequestandFullHttpMessage, so the request is a complete HTTP request.interfaceCombination of aHttpResponseandFullHttpMessage.Classes in io.netty.handler.codec.http that implement FullHttpMessageModifier and TypeClassDescriptionclassDefault implementation ofFullHttpRequest.classDefault implementation of aFullHttpResponse.Subclasses with type arguments of type FullHttpMessage in io.netty.handler.codec.httpModifier and TypeClassDescriptionclassAChannelHandlerthat aggregates anHttpMessageand its followingHttpContents into a singleFullHttpRequestorFullHttpResponse(depending on if it used to handle requests or responses) with no followingHttpContents.Methods in io.netty.handler.codec.http that return FullHttpMessageModifier and TypeMethodDescriptionprotected FullHttpMessageHttpObjectAggregator.beginAggregation(HttpMessage start, ByteBuf content) protected FullHttpMessageHttpServerUpgradeHandler.beginAggregation(HttpMessage start, ByteBuf content) FullHttpMessage.copy()FullHttpMessage.duplicate()FullHttpMessage.retain()FullHttpMessage.retain(int increment) FullHttpMessage.retainedDuplicate()FullHttpMessage.touch()Methods in io.netty.handler.codec.http with parameters of type FullHttpMessageModifier and TypeMethodDescriptionprotected voidHttpObjectAggregator.aggregate(FullHttpMessage aggregated, HttpContent content) protected voidHttpObjectAggregator.finishAggregation(FullHttpMessage aggregated) -
Uses of FullHttpMessage in io.netty.handler.codec.http2
Methods in io.netty.handler.codec.http2 that return FullHttpMessageModifier and TypeMethodDescriptionprotected final FullHttpMessageInboundHttp2ToHttpAdapter.getMessage(Http2Stream stream) Get theFullHttpMessageassociated withstream.protected FullHttpMessageInboundHttp2ToHttpAdapter.newMessage(Http2Stream stream, Http2Headers headers, boolean validateHttpHeaders, ByteBufAllocator alloc) Create a newFullHttpMessagebased upon the current connection parametersprotected FullHttpMessageInboundHttp2ToHttpAdapter.processHeadersBegin(ChannelHandlerContext ctx, Http2Stream stream, Http2Headers headers, boolean endOfStream, boolean allowAppend, boolean appendToTrailer) Provides translation between HTTP/2 and HTTP header objects while ensuring the stream is in a valid state for additional headers.Methods in io.netty.handler.codec.http2 with parameters of type FullHttpMessageModifier and TypeMethodDescriptionstatic voidHttpConversionUtil.addHttp2ToHttpHeaders(int streamId, Http2Headers inputHeaders, FullHttpMessage destinationMessage, boolean addToTrailer) Translate and add HTTP/2 headers to HTTP/1.x headers.protected voidInboundHttp2ToHttpAdapter.fireChannelRead(ChannelHandlerContext ctx, FullHttpMessage msg, boolean release, Http2Stream stream) Set final headers and fire a channel read eventprotected voidInboundHttp2ToHttpAdapter.onRstStreamRead(Http2Stream stream, FullHttpMessage msg) Called if aRST_STREAMis received but we have some data for that stream.protected final voidInboundHttp2ToHttpAdapter.putMessage(Http2Stream stream, FullHttpMessage message) Makemessagebe the state associated withstream. -
Uses of FullHttpMessage in io.netty.handler.codec.spdy
Methods in io.netty.handler.codec.spdy that return FullHttpMessageModifier and TypeMethodDescriptionprotected FullHttpMessageSpdyHttpDecoder.getMessage(int streamId) protected FullHttpMessageSpdyHttpDecoder.putMessage(int streamId, FullHttpMessage message) protected FullHttpMessageSpdyHttpDecoder.removeMessage(int streamId) Methods in io.netty.handler.codec.spdy with parameters of type FullHttpMessageModifier and TypeMethodDescriptionprotected FullHttpMessageSpdyHttpDecoder.putMessage(int streamId, FullHttpMessage message) Constructor parameters in io.netty.handler.codec.spdy with type arguments of type FullHttpMessageModifierConstructorDescriptionprotectedSpdyHttpDecoder(SpdyVersion version, int maxContentLength, Map<Integer, FullHttpMessage> messageMap) Creates a new instance with the specified parameters.protectedSpdyHttpDecoder(SpdyVersion version, int maxContentLength, Map<Integer, FullHttpMessage> messageMap, boolean validateHeaders) Deprecated.protectedSpdyHttpDecoder(SpdyVersion version, int maxContentLength, Map<Integer, FullHttpMessage> messageMap, HttpHeadersFactory headersFactory, HttpHeadersFactory trailersFactory) Creates a new instance with the specified parameters.
SpdyHttpDecoder(SpdyVersion, int, Map, HttpHeadersFactory, HttpHeadersFactory)constructor instead.