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 classDefaultFullHttpRequestDefault implementation ofFullHttpRequest.Methods in io.netty5.handler.codec.http that return FullHttpRequest Modifier and Type Method Description FullHttpRequestDefaultFullHttpRequest. copy()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(Object hint)FullHttpRequestHttpServerUpgradeHandler.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 booleanHttpServerUpgradeHandler.UpgradeCodec. prepareUpgradeResponse(ChannelHandlerContext ctx, FullHttpRequest upgradeRequest, HttpHeaders upgradeHeaders)Prepares theupgradeHeadersfor a protocol update based upon the contents ofupgradeRequest.voidHttpServerUpgradeHandler.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 FullHttpRequestWebSocketClientHandshaker. newHandshakeRequest(BufferAllocator allocator)Returns a new {@link FullHttpRequest) which will be used for the handshake.protected FullHttpRequestWebSocketClientHandshaker13. 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 theFullHttpRequestwhich is passed in.protected abstract FullHttpResponseWebSocketServerHandshaker. newHandshakeResponse(BufferAllocator allocator, FullHttpRequest req, HttpHeaders responseHeaders)Returns a new {@link FullHttpResponse) which will be used for as response to the handshake request.protected FullHttpResponseWebSocketServerHandshaker13. 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 FullHttpRequestHttpConversionUtil. toFullHttpRequest(int streamId, Http2Headers http2Headers, BufferAllocator alloc, boolean validateHttpHeaders)Create a new object to contain the request datastatic FullHttpRequestHttpConversionUtil. 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 booleanHttp2ServerUpgradeCodec. prepareUpgradeResponse(ChannelHandlerContext ctx, FullHttpRequest upgradeRequest, HttpHeaders headers)voidHttp2ServerUpgradeCodec. upgradeTo(ChannelHandlerContext ctx, FullHttpRequest upgradeRequest)
-