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.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames. -
-
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.Methods in io.netty.handler.codec.http that return FullHttpRequest Modifier and Type Method Description FullHttpRequestDefaultFullHttpRequest. copy()FullHttpRequestFullHttpRequest. copy()FullHttpRequestDefaultFullHttpRequest. duplicate()FullHttpRequestFullHttpRequest. duplicate()FullHttpRequestDefaultFullHttpRequest. replace(io.netty.buffer.ByteBuf content)FullHttpRequestFullHttpRequest. replace(io.netty.buffer.ByteBuf content)FullHttpRequestDefaultFullHttpRequest. retain()FullHttpRequestDefaultFullHttpRequest. retain(int increment)FullHttpRequestFullHttpRequest. retain()FullHttpRequestFullHttpRequest. retain(int increment)FullHttpRequestDefaultFullHttpRequest. retainedDuplicate()FullHttpRequestFullHttpRequest. retainedDuplicate()FullHttpRequestDefaultFullHttpRequest. setMethod(HttpMethod method)FullHttpRequestFullHttpRequest. setMethod(HttpMethod method)FullHttpRequestDefaultFullHttpRequest. setProtocolVersion(HttpVersion version)FullHttpRequestFullHttpRequest. setProtocolVersion(HttpVersion version)FullHttpRequestDefaultFullHttpRequest. setUri(String uri)FullHttpRequestFullHttpRequest. setUri(String uri)FullHttpRequestDefaultFullHttpRequest. touch()FullHttpRequestDefaultFullHttpRequest. touch(Object hint)FullHttpRequestFullHttpRequest. touch()FullHttpRequestFullHttpRequest. touch(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 booleanHttpServerUpgradeHandler.UpgradeCodec. prepareUpgradeResponse(io.netty.channel.ChannelHandlerContext ctx, FullHttpRequest upgradeRequest, HttpHeaders upgradeHeaders)Prepares theupgradeHeadersfor a protocol update based upon the contents ofupgradeRequest.voidHttpServerUpgradeHandler.UpgradeCodec. upgradeTo(io.netty.channel.ChannelHandlerContext ctx, FullHttpRequest upgradeRequest)Performs an HTTP protocol upgrade from the source codec. -
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 io.netty.channel.ChannelFutureWebSocketServerHandshaker. handshake(io.netty.channel.Channel channel, FullHttpRequest req)Performs the opening handshake.io.netty.channel.ChannelFutureWebSocketServerHandshaker. handshake(io.netty.channel.Channel channel, FullHttpRequest req, HttpHeaders responseHeaders, io.netty.channel.ChannelPromise promise)Performs the opening handshake When call this method you MUST NOT retain theFullHttpRequestwhich is passed in.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.
-