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.http.multipart HTTP multipart support.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 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.private static classHttpObjectAggregator.AggregatedFullHttpMessageprivate static classHttpObjectAggregator.AggregatedFullHttpRequestprivate static classHttpObjectAggregator.AggregatedFullHttpResponseMethods in io.netty.handler.codec.http that return FullHttpMessage Modifier and Type Method Description protected FullHttpMessageHttpObjectAggregator. beginAggregation(HttpMessage start, ByteBuf content)FullHttpMessageFullHttpMessage. copy()abstract FullHttpMessageHttpObjectAggregator.AggregatedFullHttpMessage. copy()FullHttpMessageFullHttpMessage. duplicate()abstract FullHttpMessageHttpObjectAggregator.AggregatedFullHttpMessage. duplicate()FullHttpMessageFullHttpMessage. replace(ByteBuf content)FullHttpMessageFullHttpMessage. retain()FullHttpMessageFullHttpMessage. retain(int increment)FullHttpMessageHttpObjectAggregator.AggregatedFullHttpMessage. retain()FullHttpMessageHttpObjectAggregator.AggregatedFullHttpMessage. retain(int increment)FullHttpMessageFullHttpMessage. retainedDuplicate()abstract FullHttpMessageHttpObjectAggregator.AggregatedFullHttpMessage. retainedDuplicate()FullHttpMessageHttpObjectAggregator.AggregatedFullHttpMessage. setProtocolVersion(HttpVersion version)FullHttpMessageFullHttpMessage. touch()FullHttpMessageFullHttpMessage. touch(java.lang.Object hint)FullHttpMessageHttpObjectAggregator.AggregatedFullHttpMessage. touch()FullHttpMessageHttpObjectAggregator.AggregatedFullHttpMessage. touch(java.lang.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)private static voidHttpMessageUtil. appendFullCommon(java.lang.StringBuilder buf, FullHttpMessage msg)protected voidHttpObjectAggregator. finishAggregation(FullHttpMessage aggregated) -
Uses of FullHttpMessage in io.netty.handler.codec.http.multipart
Classes in io.netty.handler.codec.http.multipart that implement FullHttpMessage Modifier and Type Class Description private static classHttpPostRequestEncoder.WrappedFullHttpRequest -
Uses of FullHttpMessage in io.netty.handler.codec.http2
Methods in io.netty.handler.codec.http2 that return FullHttpMessage Modifier and Type Method Description FullHttpMessageInboundHttp2ToHttpAdapter.ImmediateSendDetector. copyIfNeeded(ByteBufAllocator allocator, FullHttpMessage msg)Determine if a copy must be made after an immediate send happens.protected FullHttpMessageInboundHttp2ToHttpAdapter. getMessage(Http2Stream stream)Get theFullHttpMessageassociated withstream.private FullHttpMessageHttp2StreamFrameToHttpObjectCodec. newFullMessage(int id, Http2Headers headers, ByteBufAllocator alloc)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 FullHttpMessage Modifier and Type Method Description static voidHttpConversionUtil. addHttp2ToHttpHeaders(int streamId, Http2Headers sourceHeaders, FullHttpMessage destinationMessage, boolean addToTrailer)Translate and add HTTP/2 headers to HTTP/1.x headers.FullHttpMessageInboundHttp2ToHttpAdapter.ImmediateSendDetector. copyIfNeeded(ByteBufAllocator allocator, FullHttpMessage msg)Determine if a copy must be made after an immediate send happens.protected voidInboundHttp2ToHttpAdapter. fireChannelRead(ChannelHandlerContext ctx, FullHttpMessage msg, boolean release, Http2Stream stream)Set final headers and fire a channel read event(package private) static voidInboundHttpToHttp2Adapter. handle(ChannelHandlerContext ctx, Http2Connection connection, Http2FrameListener listener, FullHttpMessage message)booleanInboundHttp2ToHttpAdapter.ImmediateSendDetector. mustSendImmediately(FullHttpMessage msg)Determine if the response should be sent immediately, or wait for the end of the streamprotected voidInboundHttp2ToHttpAdapter. onRstStreamRead(Http2Stream stream, FullHttpMessage msg)Called if aRST_STREAMis received but we have some data for that stream.private voidInboundHttp2ToHttpAdapter. processHeadersEnd(ChannelHandlerContext ctx, Http2Stream stream, FullHttpMessage msg, boolean endOfStream)After HTTP/2 headers have been processed byInboundHttp2ToHttpAdapter.processHeadersBegin(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.http2.Http2Stream, io.netty.handler.codec.http2.Http2Headers, boolean, boolean, boolean)this method either sends the result up the pipeline or retains the message for future processing.protected voidInboundHttp2ToHttpAdapter. putMessage(Http2Stream stream, FullHttpMessage message)Makemessagebe the state associated withstream. -
Uses of FullHttpMessage in io.netty.handler.codec.spdy
Fields in io.netty.handler.codec.spdy with type parameters of type FullHttpMessage Modifier and Type Field Description private java.util.Map<java.lang.Integer,FullHttpMessage>SpdyHttpDecoder. messageMapMethods 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, 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)Creates a new instance with the specified parameters.
-