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.multipart HTTP multipart support.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.io.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol. -
-
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
.private static class
HttpObjectAggregator.AggregatedFullHttpRequest
Fields in io.netty.handler.codec.http declared as FullHttpRequest Modifier and Type Field Description private FullHttpRequest
HttpServerUpgradeHandler.UpgradeEvent. upgradeRequest
Methods in io.netty.handler.codec.http that return FullHttpRequest Modifier and Type Method Description FullHttpRequest
DefaultFullHttpRequest. copy()
FullHttpRequest
FullHttpRequest. copy()
FullHttpRequest
HttpObjectAggregator.AggregatedFullHttpRequest. copy()
FullHttpRequest
DefaultFullHttpRequest. duplicate()
FullHttpRequest
FullHttpRequest. duplicate()
FullHttpRequest
HttpObjectAggregator.AggregatedFullHttpRequest. duplicate()
FullHttpRequest
DefaultFullHttpRequest. replace(ByteBuf content)
FullHttpRequest
FullHttpRequest. replace(ByteBuf content)
FullHttpRequest
HttpObjectAggregator.AggregatedFullHttpRequest. replace(ByteBuf content)
FullHttpRequest
DefaultFullHttpRequest. retain()
FullHttpRequest
DefaultFullHttpRequest. retain(int increment)
FullHttpRequest
FullHttpRequest. retain()
FullHttpRequest
FullHttpRequest. retain(int increment)
FullHttpRequest
HttpObjectAggregator.AggregatedFullHttpRequest. retain()
FullHttpRequest
HttpObjectAggregator.AggregatedFullHttpRequest. retain(int increment)
FullHttpRequest
DefaultFullHttpRequest. retainedDuplicate()
FullHttpRequest
FullHttpRequest. retainedDuplicate()
FullHttpRequest
HttpObjectAggregator.AggregatedFullHttpRequest. retainedDuplicate()
FullHttpRequest
DefaultFullHttpRequest. setMethod(HttpMethod method)
FullHttpRequest
FullHttpRequest. setMethod(HttpMethod method)
FullHttpRequest
HttpObjectAggregator.AggregatedFullHttpRequest. setMethod(HttpMethod method)
FullHttpRequest
DefaultFullHttpRequest. setProtocolVersion(HttpVersion version)
FullHttpRequest
FullHttpRequest. setProtocolVersion(HttpVersion version)
FullHttpRequest
HttpObjectAggregator.AggregatedFullHttpRequest. setProtocolVersion(HttpVersion version)
FullHttpRequest
DefaultFullHttpRequest. setUri(java.lang.String uri)
FullHttpRequest
FullHttpRequest. setUri(java.lang.String uri)
FullHttpRequest
HttpObjectAggregator.AggregatedFullHttpRequest. 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
HttpObjectAggregator.AggregatedFullHttpRequest. touch()
FullHttpRequest
HttpObjectAggregator.AggregatedFullHttpRequest. 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 (package private) static java.lang.StringBuilder
HttpMessageUtil. appendFullRequest(java.lang.StringBuilder buf, FullHttpRequest req)
boolean
HttpServerUpgradeHandler.UpgradeCodec. prepareUpgradeResponse(ChannelHandlerContext ctx, FullHttpRequest upgradeRequest, HttpHeaders upgradeHeaders)
Prepares theupgradeHeaders
for a protocol update based upon the contents ofupgradeRequest
.private boolean
HttpServerUpgradeHandler. upgrade(ChannelHandlerContext ctx, FullHttpRequest request)
Attempts to upgrade to the protocol(s) identified by theHttpHeaderNames.UPGRADE
header (if provided in the request).void
HttpServerUpgradeHandler.UpgradeCodec. upgradeTo(ChannelHandlerContext ctx, FullHttpRequest upgradeRequest)
Performs an HTTP protocol upgrade from the source codec.Constructors in io.netty.handler.codec.http with parameters of type FullHttpRequest Constructor Description UpgradeEvent(java.lang.CharSequence protocol, FullHttpRequest upgradeRequest)
-
Uses of FullHttpRequest in io.netty.handler.codec.http.multipart
Classes in io.netty.handler.codec.http.multipart that implement FullHttpRequest Modifier and Type Class Description private static class
HttpPostRequestEncoder.WrappedFullHttpRequest
Methods in io.netty.handler.codec.http.multipart that return FullHttpRequest Modifier and Type Method Description FullHttpRequest
HttpPostRequestEncoder.WrappedFullHttpRequest. copy()
FullHttpRequest
HttpPostRequestEncoder.WrappedFullHttpRequest. duplicate()
FullHttpRequest
HttpPostRequestEncoder.WrappedFullHttpRequest. replace(ByteBuf content)
FullHttpRequest
HttpPostRequestEncoder.WrappedFullHttpRequest. retain()
FullHttpRequest
HttpPostRequestEncoder.WrappedFullHttpRequest. retain(int increment)
FullHttpRequest
HttpPostRequestEncoder.WrappedFullHttpRequest. retainedDuplicate()
FullHttpRequest
HttpPostRequestEncoder.WrappedFullHttpRequest. setMethod(HttpMethod method)
FullHttpRequest
HttpPostRequestEncoder.WrappedFullHttpRequest. setProtocolVersion(HttpVersion version)
FullHttpRequest
HttpPostRequestEncoder.WrappedFullHttpRequest. setUri(java.lang.String uri)
FullHttpRequest
HttpPostRequestEncoder.WrappedFullHttpRequest. touch()
FullHttpRequest
HttpPostRequestEncoder.WrappedFullHttpRequest. touch(java.lang.Object hint)
-
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.private boolean
WebSocketServerProtocolHandshakeHandler. isNotWebSocketPath(FullHttpRequest req)
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 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)
-
Uses of FullHttpRequest in io.netty.handler.codec.spdy
Methods in io.netty.handler.codec.spdy that return FullHttpRequest Modifier and Type Method Description private static FullHttpRequest
SpdyHttpDecoder. createHttpRequest(SpdyHeadersFrame requestFrame, ByteBufAllocator alloc)
-