Uses of Interface
io.netty.handler.codec.http.FullHttpMessage
-
Packages that use FullHttpMessage Package Description io.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty.handler.codec.spdy 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.http Modifier and Type Interface Description interface
FullHttpRequest
Combine theHttpRequest
andFullHttpMessage
, so the request is a complete HTTP request.interface
FullHttpResponse
Combination of aHttpResponse
andFullHttpMessage
.Classes in io.netty.handler.codec.http that implement FullHttpMessage Modifier and Type Class Description class
DefaultFullHttpRequest
Default implementation ofFullHttpRequest
.class
DefaultFullHttpResponse
Default implementation of aFullHttpResponse
.Methods in io.netty.handler.codec.http that return FullHttpMessage Modifier and Type Method Description protected FullHttpMessage
HttpObjectAggregator. beginAggregation(HttpMessage start, ByteBuf content)
FullHttpMessage
FullHttpMessage. copy()
FullHttpMessage
FullHttpMessage. duplicate()
FullHttpMessage
FullHttpMessage. replace(ByteBuf content)
FullHttpMessage
FullHttpMessage. retain()
FullHttpMessage
FullHttpMessage. retain(int increment)
FullHttpMessage
FullHttpMessage. retainedDuplicate()
FullHttpMessage
FullHttpMessage. touch()
FullHttpMessage
FullHttpMessage. touch(java.lang.Object hint)
Methods in io.netty.handler.codec.http with parameters of type FullHttpMessage Modifier and Type Method Description protected void
HttpObjectAggregator. aggregate(FullHttpMessage aggregated, HttpContent content)
protected void
HttpObjectAggregator. finishAggregation(FullHttpMessage aggregated)
-
Uses of FullHttpMessage in io.netty.handler.codec.http2
Methods in io.netty.handler.codec.http2 that return FullHttpMessage Modifier and Type Method Description protected FullHttpMessage
InboundHttp2ToHttpAdapter. getMessage(Http2Stream stream)
Get theFullHttpMessage
associated withstream
.protected FullHttpMessage
InboundHttp2ToHttpAdapter. newMessage(Http2Stream stream, Http2Headers headers, boolean validateHttpHeaders, ByteBufAllocator alloc)
Create a newFullHttpMessage
based upon the current connection parametersprotected FullHttpMessage
InboundHttp2ToHttpAdapter. 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 FullHttpMessage Modifier and Type Method Description static void
HttpConversionUtil. addHttp2ToHttpHeaders(int streamId, Http2Headers inputHeaders, FullHttpMessage destinationMessage, boolean addToTrailer)
Translate and add HTTP/2 headers to HTTP/1.x headers.protected void
InboundHttp2ToHttpAdapter. fireChannelRead(ChannelHandlerContext ctx, FullHttpMessage msg, boolean release, Http2Stream stream)
Set final headers and fire a channel read eventprotected void
InboundHttp2ToHttpAdapter. onRstStreamRead(Http2Stream stream, FullHttpMessage msg)
Called if aRST_STREAM
is received but we have some data for that stream.protected void
InboundHttp2ToHttpAdapter. putMessage(Http2Stream stream, FullHttpMessage message)
Makemessage
be the state associated withstream
. -
Uses of FullHttpMessage in io.netty.handler.codec.spdy
Methods in io.netty.handler.codec.spdy that return FullHttpMessage Modifier and Type Method Description protected FullHttpMessage
SpdyHttpDecoder. getMessage(int streamId)
protected FullHttpMessage
SpdyHttpDecoder. putMessage(int streamId, FullHttpMessage message)
protected FullHttpMessage
SpdyHttpDecoder. removeMessage(int streamId)
Methods in io.netty.handler.codec.spdy with parameters of type FullHttpMessage Modifier and Type Method Description protected FullHttpMessage
SpdyHttpDecoder. putMessage(int streamId, FullHttpMessage message)
Constructor parameters in io.netty.handler.codec.spdy with type arguments of type FullHttpMessage Constructor Description SpdyHttpDecoder(SpdyVersion version, int maxContentLength, java.util.Map<java.lang.Integer,FullHttpMessage> messageMap)
Creates a new instance with the specified parameters.SpdyHttpDecoder(SpdyVersion version, int maxContentLength, java.util.Map<java.lang.Integer,FullHttpMessage> messageMap, boolean validateHeaders)
Deprecated.Use theSpdyHttpDecoder(SpdyVersion, int, Map, HttpHeadersFactory, HttpHeadersFactory)
constructor instead.SpdyHttpDecoder(SpdyVersion version, int maxContentLength, java.util.Map<java.lang.Integer,FullHttpMessage> messageMap, HttpHeadersFactory headersFactory, HttpHeadersFactory trailersFactory)
Creates a new instance with the specified parameters.
-