Uses of Interface
io.netty5.handler.codec.http.FullHttpMessage
-
Packages that use FullHttpMessage Package Description io.netty5.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty5.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of FullHttpMessage in io.netty5.handler.codec.http
Classes in io.netty5.handler.codec.http with type parameters of type FullHttpMessage Modifier and Type Interface Description interfaceFullHttpMessage<R extends FullHttpMessage<R>>CombinesHttpMessageandLastHttpContentinto one message.Subinterfaces of FullHttpMessage in io.netty5.handler.codec.http Modifier and Type Interface Description interfaceFullHttpRequestCombine theHttpRequestandFullHttpMessage, so the request is a complete HTTP request.interfaceFullHttpResponseCombination of aHttpResponseandFullHttpMessage.Classes in io.netty5.handler.codec.http that implement FullHttpMessage Modifier and Type Class Description classDefaultFullHttpRequestDefault implementation ofFullHttpRequest.classDefaultFullHttpResponseDefault implementation of aFullHttpResponse.Methods in io.netty5.handler.codec.http that return FullHttpMessage Modifier and Type Method Description protected FullHttpMessage<?>HttpObjectAggregator. beginAggregation(BufferAllocator allocator, HttpMessage start)Methods in io.netty5.handler.codec.http with parameters of type FullHttpMessage Modifier and Type Method Description protected voidHttpObjectAggregator. aggregate(BufferAllocator allocator, FullHttpMessage<?> aggregated, HttpContent<C> content)protected voidHttpObjectAggregator. finishAggregation(BufferAllocator allocator, FullHttpMessage<?> aggregated)protected intHttpObjectAggregator. lengthForAggregation(FullHttpMessage<?> msg) -
Uses of FullHttpMessage in io.netty5.handler.codec.http2
Methods in io.netty5.handler.codec.http2 that return FullHttpMessage Modifier and Type Method Description protected FullHttpMessage<?>InboundHttp2ToHttpAdapter. getMessage(Http2Stream stream)Get theFullHttpMessageassociated withstream.protected FullHttpMessage<?>InboundHttp2ToHttpAdapter. newMessage(Http2Stream stream, Http2Headers headers, boolean validateHttpHeaders, BufferAllocator alloc)Create a newFullHttpMessagebased 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.netty5.handler.codec.http2 with parameters of type FullHttpMessage Modifier and Type Method Description static 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 voidInboundHttp2ToHttpAdapter. putMessage(Http2Stream stream, FullHttpMessage<?> message)Makemessagebe the state associated withstream.
-