Uses of Interface
io.netty5.handler.codec.http.FullHttpRequest
-
Packages that use FullHttpRequest Package Description io.netty5.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty5.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.io.netty5.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of FullHttpRequest in io.netty5.handler.codec.http
Classes in io.netty5.handler.codec.http that implement FullHttpRequest Modifier and Type Class Description class
DefaultFullHttpRequest
Default implementation ofFullHttpRequest
.Methods in io.netty5.handler.codec.http that return FullHttpRequest Modifier and Type Method Description FullHttpRequest
DefaultFullHttpRequest. copy()
FullHttpRequest
DefaultFullHttpRequest. setMethod(HttpMethod method)
FullHttpRequest
FullHttpRequest. setMethod(HttpMethod method)
FullHttpRequest
DefaultFullHttpRequest. setProtocolVersion(HttpVersion version)
FullHttpRequest
FullHttpRequest. setProtocolVersion(HttpVersion version)
FullHttpRequest
DefaultFullHttpRequest. setUri(String uri)
FullHttpRequest
FullHttpRequest. setUri(String uri)
FullHttpRequest
DefaultFullHttpRequest. touch(Object hint)
FullHttpRequest
HttpServerUpgradeHandler.UpgradeEvent. upgradeRequest()
Gets the request that triggered the protocol upgrade.Methods in io.netty5.handler.codec.http that return types with arguments of type FullHttpRequest Modifier and Type Method Description Send<FullHttpRequest>
DefaultFullHttpRequest. send()
Methods in io.netty5.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.netty5.handler.codec.http.websocketx
Methods in io.netty5.handler.codec.http.websocketx that return FullHttpRequest Modifier and Type Method Description protected abstract FullHttpRequest
WebSocketClientHandshaker. newHandshakeRequest(BufferAllocator allocator)
Returns a new {@link FullHttpRequest) which will be used for the handshake.protected FullHttpRequest
WebSocketClientHandshaker13. newHandshakeRequest(BufferAllocator allocator)
/**Methods in io.netty5.handler.codec.http.websocketx with parameters of type FullHttpRequest Modifier and Type Method Description Future<Void>
WebSocketServerHandshaker. handshake(Channel channel, FullHttpRequest req)
Performs the opening handshake.Future<Void>
WebSocketServerHandshaker. handshake(Channel channel, FullHttpRequest req, HttpHeaders responseHeaders)
Performs the opening handshake When call this method you MUST NOT retain theFullHttpRequest
which is passed in.protected abstract FullHttpResponse
WebSocketServerHandshaker. newHandshakeResponse(BufferAllocator allocator, FullHttpRequest req, HttpHeaders responseHeaders)
Returns a new {@link FullHttpResponse) which will be used for as response to the handshake request.protected FullHttpResponse
WebSocketServerHandshaker13. newHandshakeResponse(BufferAllocator allocator, FullHttpRequest req, HttpHeaders headers)
Handle the web socket handshake for the web socket specification HyBi versions 13-17. -
Uses of FullHttpRequest in io.netty5.handler.codec.http2
Methods in io.netty5.handler.codec.http2 that return FullHttpRequest Modifier and Type Method Description static FullHttpRequest
HttpConversionUtil. toFullHttpRequest(int streamId, Http2Headers http2Headers, BufferAllocator alloc, boolean validateHttpHeaders)
Create a new object to contain the request datastatic FullHttpRequest
HttpConversionUtil. toFullHttpRequest(int streamId, Http2Headers http2Headers, Buffer content, boolean validateHttpHeaders, BufferAllocator allocator)
Create a new object to contain the request dataMethods in io.netty5.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)
-