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.io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 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 class
DefaultFullHttpRequest
Default implementation ofFullHttpRequest
.Methods in io.netty.handler.codec.http that return FullHttpRequest Modifier and Type Method Description FullHttpRequest
DefaultFullHttpRequest. copy()
FullHttpRequest
FullHttpRequest. copy()
FullHttpRequest
DefaultFullHttpRequest. duplicate()
FullHttpRequest
FullHttpRequest. duplicate()
FullHttpRequest
DefaultFullHttpRequest. replace(ByteBuf content)
FullHttpRequest
FullHttpRequest. replace(ByteBuf content)
FullHttpRequest
DefaultFullHttpRequest. retain()
FullHttpRequest
DefaultFullHttpRequest. retain(int increment)
FullHttpRequest
FullHttpRequest. retain()
FullHttpRequest
FullHttpRequest. retain(int increment)
FullHttpRequest
DefaultFullHttpRequest. retainedDuplicate()
FullHttpRequest
FullHttpRequest. retainedDuplicate()
FullHttpRequest
DefaultFullHttpRequest. setMethod(HttpMethod method)
FullHttpRequest
FullHttpRequest. setMethod(HttpMethod method)
FullHttpRequest
DefaultFullHttpRequest. setProtocolVersion(HttpVersion version)
FullHttpRequest
FullHttpRequest. setProtocolVersion(HttpVersion version)
FullHttpRequest
DefaultFullHttpRequest. setUri(java.lang.String uri)
FullHttpRequest
FullHttpRequest. setUri(java.lang.String uri)
FullHttpRequest
DefaultFullHttpRequest. touch()
FullHttpRequest
DefaultFullHttpRequest. touch(java.lang.Object hint)
FullHttpRequest
FullHttpRequest. touch()
FullHttpRequest
FullHttpRequest. touch(java.lang.Object hint)
FullHttpRequest
HttpServerUpgradeHandler.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 boolean
HttpServerUpgradeHandler.UpgradeCodec. prepareUpgradeResponse(ChannelHandlerContext ctx, FullHttpRequest upgradeRequest, HttpHeaders upgradeHeaders)
Prepares theupgradeHeaders
for a protocol update based upon the contents ofupgradeRequest
.void
HttpServerUpgradeHandler.UpgradeCodec. upgradeTo(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 FullHttpRequest
WebSocketClientHandshaker. newHandshakeRequest()
Returns a new {@link FullHttpRequest) which will be used for the handshake.protected FullHttpRequest
WebSocketClientHandshaker00. newHandshakeRequest()
Sends the opening request to the server:protected FullHttpRequest
WebSocketClientHandshaker07. newHandshakeRequest()
/**protected FullHttpRequest
WebSocketClientHandshaker08. newHandshakeRequest()
/**protected FullHttpRequest
WebSocketClientHandshaker13. newHandshakeRequest()
/**Methods in io.netty.handler.codec.http.websocketx with parameters of type FullHttpRequest Modifier and Type Method Description ChannelFuture
WebSocketServerHandshaker. handshake(Channel channel, FullHttpRequest req)
Performs the opening handshake.ChannelFuture
WebSocketServerHandshaker. handshake(Channel channel, FullHttpRequest req, HttpHeaders responseHeaders, ChannelPromise promise)
Performs the opening handshake When call this method you MUST NOT retain theFullHttpRequest
which is passed in.protected abstract FullHttpResponse
WebSocketServerHandshaker. newHandshakeResponse(FullHttpRequest req, HttpHeaders responseHeaders)
Returns a new {@link FullHttpResponse) which will be used for as response to the handshake request.protected FullHttpResponse
WebSocketServerHandshaker00. newHandshakeResponse(FullHttpRequest req, HttpHeaders headers)
Handle the web socket handshake for the web socket specification HyBi version 0 and lower.protected FullHttpResponse
WebSocketServerHandshaker07. newHandshakeResponse(FullHttpRequest req, HttpHeaders headers)
Handle the web socket handshake for the web socket specification HyBi version 7.protected FullHttpResponse
WebSocketServerHandshaker08. newHandshakeResponse(FullHttpRequest req, HttpHeaders headers)
Handle the web socket handshake for the web socket specification HyBi version 8 to 10.protected FullHttpResponse
WebSocketServerHandshaker13. 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 FullHttpRequest
HttpConversionUtil. toFullHttpRequest(int streamId, Http2Headers http2Headers, ByteBufAllocator alloc, boolean validateHttpHeaders)
Create a new object to contain the request datastatic FullHttpRequest
HttpConversionUtil. toFullHttpRequest(int streamId, Http2Headers http2Headers, ByteBuf content, 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 boolean
Http2ServerUpgradeCodec. prepareUpgradeResponse(ChannelHandlerContext ctx, FullHttpRequest upgradeRequest, HttpHeaders headers)
void
Http2ServerUpgradeCodec. upgradeTo(ChannelHandlerContext ctx, FullHttpRequest upgradeRequest)
-