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.spdy |
Encoder, decoder, session handler and their related message types for the SPDY protocol.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultFullHttpRequest
Default implementation of
FullHttpRequest . |
private static class |
HttpObjectAggregator.AggregatedFullHttpRequest |
Modifier and Type | Method and Description |
---|---|
FullHttpRequest |
FullHttpRequest.copy() |
FullHttpRequest |
HttpObjectAggregator.AggregatedFullHttpRequest.copy() |
FullHttpRequest |
DefaultFullHttpRequest.copy() |
FullHttpRequest |
HttpObjectAggregator.AggregatedFullHttpRequest.duplicate() |
FullHttpRequest |
DefaultFullHttpRequest.duplicate() |
FullHttpRequest |
FullHttpRequest.retain() |
FullHttpRequest |
HttpObjectAggregator.AggregatedFullHttpRequest.retain() |
FullHttpRequest |
DefaultFullHttpRequest.retain() |
FullHttpRequest |
FullHttpRequest.retain(int increment) |
FullHttpRequest |
HttpObjectAggregator.AggregatedFullHttpRequest.retain(int increment) |
FullHttpRequest |
DefaultFullHttpRequest.retain(int increment) |
FullHttpRequest |
FullHttpRequest.setMethod(HttpMethod method) |
FullHttpRequest |
HttpObjectAggregator.AggregatedFullHttpRequest.setMethod(HttpMethod method) |
FullHttpRequest |
DefaultFullHttpRequest.setMethod(HttpMethod method) |
FullHttpRequest |
FullHttpRequest.setProtocolVersion(HttpVersion version) |
FullHttpRequest |
HttpObjectAggregator.AggregatedFullHttpRequest.setProtocolVersion(HttpVersion version) |
FullHttpRequest |
DefaultFullHttpRequest.setProtocolVersion(HttpVersion version) |
FullHttpRequest |
FullHttpRequest.setUri(java.lang.String uri) |
FullHttpRequest |
HttpObjectAggregator.AggregatedFullHttpRequest.setUri(java.lang.String uri) |
FullHttpRequest |
DefaultFullHttpRequest.setUri(java.lang.String uri) |
Modifier and Type | Method and Description |
---|---|
(package private) static java.lang.StringBuilder |
HttpMessageUtil.appendFullRequest(java.lang.StringBuilder buf,
FullHttpRequest req) |
Modifier and Type | Class and Description |
---|---|
private static class |
HttpPostRequestEncoder.WrappedFullHttpRequest |
Modifier and Type | Method and Description |
---|---|
FullHttpRequest |
HttpPostRequestEncoder.WrappedFullHttpRequest.copy() |
FullHttpRequest |
HttpPostRequestEncoder.WrappedFullHttpRequest.duplicate() |
FullHttpRequest |
HttpPostRequestEncoder.WrappedFullHttpRequest.retain() |
FullHttpRequest |
HttpPostRequestEncoder.WrappedFullHttpRequest.retain(int increment) |
FullHttpRequest |
HttpPostRequestEncoder.WrappedFullHttpRequest.setMethod(HttpMethod method) |
FullHttpRequest |
HttpPostRequestEncoder.WrappedFullHttpRequest.setProtocolVersion(HttpVersion version) |
FullHttpRequest |
HttpPostRequestEncoder.WrappedFullHttpRequest.setUri(java.lang.String uri) |
Modifier and Type | Method and Description |
---|---|
protected FullHttpRequest |
WebSocketClientHandshaker00.newHandshakeRequest()
Sends the opening request to the server:
|
protected FullHttpRequest |
WebSocketClientHandshaker08.newHandshakeRequest()
/**
|
protected FullHttpRequest |
WebSocketClientHandshaker13.newHandshakeRequest()
/**
|
protected abstract FullHttpRequest |
WebSocketClientHandshaker.newHandshakeRequest()
Returns a new {@link FullHttpRequest) which will be used for the handshake.
|
protected FullHttpRequest |
WebSocketClientHandshaker07.newHandshakeRequest()
/**
|
Modifier and Type | Method and 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 the
FullHttpRequest 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 |
WebSocketServerHandshaker07.newHandshakeResponse(FullHttpRequest req,
HttpHeaders headers)
Handle the web socket handshake for the web socket specification HyBi version 7.
|
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 |
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.
|
Modifier and Type | Method and Description |
---|---|
private static FullHttpRequest |
SpdyHttpDecoder.createHttpRequest(int spdyVersion,
SpdyHeadersFrame requestFrame) |