Uses of Interface
io.netty5.handler.codec.http.FullHttpResponse
-
Packages that use FullHttpResponse 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. -
-
Uses of FullHttpResponse in io.netty5.handler.codec.http
Classes in io.netty5.handler.codec.http that implement FullHttpResponse Modifier and Type Class Description class
DefaultFullHttpResponse
Default implementation of aFullHttpResponse
.Methods in io.netty5.handler.codec.http that return FullHttpResponse Modifier and Type Method Description FullHttpResponse
DefaultFullHttpResponse. setProtocolVersion(HttpVersion version)
FullHttpResponse
FullHttpResponse. setProtocolVersion(HttpVersion version)
FullHttpResponse
DefaultFullHttpResponse. setStatus(HttpResponseStatus status)
FullHttpResponse
FullHttpResponse. setStatus(HttpResponseStatus status)
FullHttpResponse
DefaultFullHttpResponse. touch(Object hint)
Methods in io.netty5.handler.codec.http that return types with arguments of type FullHttpResponse Modifier and Type Method Description io.netty5.util.Send<FullHttpResponse>
DefaultFullHttpResponse. send()
Method parameters in io.netty5.handler.codec.http with type arguments of type FullHttpResponse Modifier and Type Method Description void
HttpClientUpgradeHandler.UpgradeCodec. upgradeTo(io.netty5.channel.ChannelHandlerContext ctx, io.netty5.util.Send<FullHttpResponse> upgradeResponse)
Performs an HTTP protocol upgrade from the source codec. -
Uses of FullHttpResponse in io.netty5.handler.codec.http.websocketx
Methods in io.netty5.handler.codec.http.websocketx that return FullHttpResponse Modifier and Type Method Description protected abstract FullHttpResponse
WebSocketServerHandshaker. newHandshakeResponse(io.netty5.buffer.api.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(io.netty5.buffer.api.BufferAllocator allocator, FullHttpRequest req, HttpHeaders headers)
Handle the web socket handshake for the web socket specification HyBi versions 13-17.Methods in io.netty5.handler.codec.http.websocketx with parameters of type FullHttpResponse Modifier and Type Method Description void
WebSocketClientHandshaker. finishHandshake(io.netty5.channel.Channel channel, FullHttpResponse response)
Validates and finishes the opening handshake initiated byWebSocketClientHandshaker.handshake(io.netty5.channel.Channel)
}.protected abstract void
WebSocketClientHandshaker. verify(FullHttpResponse response)
Verify theFullHttpResponse
and throws aWebSocketHandshakeException
if something is wrong.protected void
WebSocketClientHandshaker13. verify(FullHttpResponse response)
Process server response:
-