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.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 interfaceFullHttpRequestCombine theHttpRequestandFullHttpMessage, so the request is a complete HTTP request.interfaceFullHttpResponseCombination of aHttpResponseandFullHttpMessage.Classes in io.netty.handler.codec.http that implement FullHttpMessage Modifier and Type Class Description classDefaultFullHttpRequestDefault implementation ofFullHttpRequest.classDefaultFullHttpResponseDefault implementation of aFullHttpResponse.Methods in io.netty.handler.codec.http that return FullHttpMessage Modifier and Type Method Description protected FullHttpMessageHttpObjectAggregator. beginAggregation(HttpMessage start, io.netty.buffer.ByteBuf content)protected FullHttpMessageHttpServerUpgradeHandler. beginAggregation(HttpMessage start, io.netty.buffer.ByteBuf content)FullHttpMessageFullHttpMessage. copy()FullHttpMessageFullHttpMessage. duplicate()FullHttpMessageFullHttpMessage. replace(io.netty.buffer.ByteBuf content)FullHttpMessageFullHttpMessage. retain()FullHttpMessageFullHttpMessage. retain(int increment)FullHttpMessageFullHttpMessage. retainedDuplicate()FullHttpMessageFullHttpMessage. touch()FullHttpMessageFullHttpMessage. touch(Object hint)Methods in io.netty.handler.codec.http with parameters of type FullHttpMessage Modifier and Type Method Description protected voidHttpObjectAggregator. aggregate(FullHttpMessage aggregated, HttpContent content)protected voidHttpObjectAggregator. finishAggregation(FullHttpMessage aggregated) -
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 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 FullHttpMessage Modifier and Type Method Description protected FullHttpMessageSpdyHttpDecoder. 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, Map<Integer,FullHttpMessage> messageMap)Creates a new instance with the specified parameters.SpdyHttpDecoder(SpdyVersion version, int maxContentLength, Map<Integer,FullHttpMessage> messageMap, boolean validateHeaders)Deprecated.Use theSpdyHttpDecoder(SpdyVersion, int, Map, HttpHeadersFactory, HttpHeadersFactory)constructor instead.SpdyHttpDecoder(SpdyVersion version, int maxContentLength, Map<Integer,FullHttpMessage> messageMap, HttpHeadersFactory headersFactory, HttpHeadersFactory trailersFactory)Creates a new instance with the specified parameters.
-