Uses of Interface
io.netty.handler.codec.http.FullHttpRequest
-
Packages that use FullHttpRequest 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.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.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 FullHttpRequest in io.netty.handler.codec.http
Classes in io.netty.handler.codec.http that implement FullHttpRequest Modifier and Type Class Description classDefaultFullHttpRequestDefault implementation ofFullHttpRequest.private static classHttpObjectAggregator.AggregatedFullHttpRequestFields in io.netty.handler.codec.http declared as FullHttpRequest Modifier and Type Field Description private FullHttpRequestHttpServerUpgradeHandler.UpgradeEvent. upgradeRequestMethods in io.netty.handler.codec.http that return FullHttpRequest Modifier and Type Method Description FullHttpRequestDefaultFullHttpRequest. copy()FullHttpRequestFullHttpRequest. copy()FullHttpRequestHttpObjectAggregator.AggregatedFullHttpRequest. copy()FullHttpRequestDefaultFullHttpRequest. duplicate()FullHttpRequestFullHttpRequest. duplicate()FullHttpRequestHttpObjectAggregator.AggregatedFullHttpRequest. duplicate()FullHttpRequestDefaultFullHttpRequest. replace(ByteBuf content)FullHttpRequestFullHttpRequest. replace(ByteBuf content)FullHttpRequestHttpObjectAggregator.AggregatedFullHttpRequest. replace(ByteBuf content)FullHttpRequestDefaultFullHttpRequest. retain()FullHttpRequestDefaultFullHttpRequest. retain(int increment)FullHttpRequestFullHttpRequest. retain()FullHttpRequestFullHttpRequest. retain(int increment)FullHttpRequestHttpObjectAggregator.AggregatedFullHttpRequest. retain()FullHttpRequestHttpObjectAggregator.AggregatedFullHttpRequest. retain(int increment)FullHttpRequestDefaultFullHttpRequest. retainedDuplicate()FullHttpRequestFullHttpRequest. retainedDuplicate()FullHttpRequestHttpObjectAggregator.AggregatedFullHttpRequest. retainedDuplicate()FullHttpRequestDefaultFullHttpRequest. setMethod(HttpMethod method)FullHttpRequestFullHttpRequest. setMethod(HttpMethod method)FullHttpRequestHttpObjectAggregator.AggregatedFullHttpRequest. setMethod(HttpMethod method)FullHttpRequestDefaultFullHttpRequest. setProtocolVersion(HttpVersion version)FullHttpRequestFullHttpRequest. setProtocolVersion(HttpVersion version)FullHttpRequestHttpObjectAggregator.AggregatedFullHttpRequest. setProtocolVersion(HttpVersion version)FullHttpRequestDefaultFullHttpRequest. setUri(java.lang.String uri)FullHttpRequestFullHttpRequest. setUri(java.lang.String uri)FullHttpRequestHttpObjectAggregator.AggregatedFullHttpRequest. setUri(java.lang.String uri)FullHttpRequestDefaultFullHttpRequest. touch()FullHttpRequestDefaultFullHttpRequest. touch(java.lang.Object hint)FullHttpRequestFullHttpRequest. touch()FullHttpRequestFullHttpRequest. touch(java.lang.Object hint)FullHttpRequestHttpObjectAggregator.AggregatedFullHttpRequest. touch()FullHttpRequestHttpObjectAggregator.AggregatedFullHttpRequest. touch(java.lang.Object hint)FullHttpRequestHttpServerUpgradeHandler.UpgradeEvent. upgradeRequest()Gets the request that triggered the protocol upgrade.Methods in io.netty.handler.codec.http with parameters of type FullHttpRequest Modifier and Type Method Description (package private) static java.lang.StringBuilderHttpMessageUtil. appendFullRequest(java.lang.StringBuilder buf, FullHttpRequest req)booleanHttpServerUpgradeHandler.UpgradeCodec. prepareUpgradeResponse(ChannelHandlerContext ctx, FullHttpRequest upgradeRequest, HttpHeaders upgradeHeaders)Prepares theupgradeHeadersfor a protocol update based upon the contents ofupgradeRequest.private booleanHttpServerUpgradeHandler. upgrade(ChannelHandlerContext ctx, FullHttpRequest request)Attempts to upgrade to the protocol(s) identified by theHttpHeaderNames.UPGRADEheader (if provided in the request).voidHttpServerUpgradeHandler.UpgradeCodec. upgradeTo(ChannelHandlerContext ctx, FullHttpRequest upgradeRequest)Performs an HTTP protocol upgrade from the source codec.Constructors in io.netty.handler.codec.http with parameters of type FullHttpRequest Constructor Description UpgradeEvent(java.lang.CharSequence protocol, FullHttpRequest upgradeRequest) -
Uses of FullHttpRequest in io.netty.handler.codec.http.multipart
Classes in io.netty.handler.codec.http.multipart that implement FullHttpRequest Modifier and Type Class Description private static classHttpPostRequestEncoder.WrappedFullHttpRequestMethods in io.netty.handler.codec.http.multipart that return FullHttpRequest Modifier and Type Method Description FullHttpRequestHttpPostRequestEncoder.WrappedFullHttpRequest. copy()FullHttpRequestHttpPostRequestEncoder.WrappedFullHttpRequest. duplicate()FullHttpRequestHttpPostRequestEncoder.WrappedFullHttpRequest. replace(ByteBuf content)FullHttpRequestHttpPostRequestEncoder.WrappedFullHttpRequest. retain()FullHttpRequestHttpPostRequestEncoder.WrappedFullHttpRequest. retain(int increment)FullHttpRequestHttpPostRequestEncoder.WrappedFullHttpRequest. retainedDuplicate()FullHttpRequestHttpPostRequestEncoder.WrappedFullHttpRequest. setMethod(HttpMethod method)FullHttpRequestHttpPostRequestEncoder.WrappedFullHttpRequest. setProtocolVersion(HttpVersion version)FullHttpRequestHttpPostRequestEncoder.WrappedFullHttpRequest. setUri(java.lang.String uri)FullHttpRequestHttpPostRequestEncoder.WrappedFullHttpRequest. touch()FullHttpRequestHttpPostRequestEncoder.WrappedFullHttpRequest. touch(java.lang.Object hint) -
Uses of FullHttpRequest in io.netty.handler.codec.http.websocketx
Methods in io.netty.handler.codec.http.websocketx that return FullHttpRequest Modifier and Type Method Description protected abstract FullHttpRequestWebSocketClientHandshaker. newHandshakeRequest()Returns a new {@link FullHttpRequest) which will be used for the handshake.protected FullHttpRequestWebSocketClientHandshaker00. newHandshakeRequest()Sends the opening request to the server:protected FullHttpRequestWebSocketClientHandshaker07. newHandshakeRequest()/**protected FullHttpRequestWebSocketClientHandshaker08. newHandshakeRequest()/**protected FullHttpRequestWebSocketClientHandshaker13. newHandshakeRequest()/**Methods in io.netty.handler.codec.http.websocketx with parameters of type FullHttpRequest Modifier and Type Method Description ChannelFutureWebSocketServerHandshaker. handshake(Channel channel, FullHttpRequest req)Performs the opening handshake.ChannelFutureWebSocketServerHandshaker. handshake(Channel channel, FullHttpRequest req, HttpHeaders responseHeaders, ChannelPromise promise)Performs the opening handshake When call this method you MUST NOT retain theFullHttpRequestwhich is passed in.private booleanWebSocketServerProtocolHandshakeHandler. isNotWebSocketPath(FullHttpRequest req)protected abstract FullHttpResponseWebSocketServerHandshaker. newHandshakeResponse(FullHttpRequest req, HttpHeaders responseHeaders)Returns a new {@link FullHttpResponse) which will be used for as response to the handshake request.protected FullHttpResponseWebSocketServerHandshaker00. newHandshakeResponse(FullHttpRequest req, HttpHeaders headers)Handle the web socket handshake for the web socket specification HyBi version 0 and lower.protected FullHttpResponseWebSocketServerHandshaker07. newHandshakeResponse(FullHttpRequest req, HttpHeaders headers)Handle the web socket handshake for the web socket specification HyBi version 7.protected FullHttpResponseWebSocketServerHandshaker08. newHandshakeResponse(FullHttpRequest req, HttpHeaders headers)Handle the web socket handshake for the web socket specification HyBi version 8 to 10.protected FullHttpResponseWebSocketServerHandshaker13. newHandshakeResponse(FullHttpRequest req, HttpHeaders headers)Handle the web socket handshake for the web socket specification HyBi versions 13-17. -
Uses of FullHttpRequest in io.netty.handler.codec.http2
Methods in io.netty.handler.codec.http2 that return FullHttpRequest Modifier and Type Method Description static FullHttpRequestHttpConversionUtil. toFullHttpRequest(int streamId, Http2Headers http2Headers, ByteBufAllocator alloc, boolean validateHttpHeaders)Create a new object to contain the request dataMethods in io.netty.handler.codec.http2 with parameters of type FullHttpRequest Modifier and Type Method Description booleanHttp2ServerUpgradeCodec. prepareUpgradeResponse(ChannelHandlerContext ctx, FullHttpRequest upgradeRequest, HttpHeaders headers)voidHttp2ServerUpgradeCodec. upgradeTo(ChannelHandlerContext ctx, FullHttpRequest upgradeRequest) -
Uses of FullHttpRequest in io.netty.handler.codec.spdy
Methods in io.netty.handler.codec.spdy that return FullHttpRequest Modifier and Type Method Description private static FullHttpRequestSpdyHttpDecoder. createHttpRequest(SpdyHeadersFrame requestFrame, ByteBufAllocator alloc)
-