程序包 | 说明 |
---|---|
io.netty.handler.codec.http |
Benchmarks for
io.netty.handler.codec.http . |
io.netty.handler.codec.memcache |
Common superset of ascii and binary classes.
|
io.netty.handler.codec.memcache.binary |
Implementations and Interfaces for the Memcache Binary protocol.
|
io.netty.handler.codec.socksx |
Encoder, decoder and their related message types for SOCKS protocol.
|
io.netty.handler.codec.socksx.v4 |
Encoder, decoder and their related message types for SOCKSv4 protocol.
|
io.netty.handler.codec.socksx.v5 |
Encoder, decoder and their related message types for SOCKSv5 protocol.
|
io.netty.handler.codec.stomp |
STOMP codec
|
限定符和类型 | 接口和说明 |
---|---|
interface |
FullHttpMessage
Combines
HttpMessage and LastHttpContent into one
message. |
interface |
FullHttpRequest
Combine the
HttpRequest and FullHttpMessage , so the request is a complete HTTP
request. |
interface |
FullHttpResponse
Combination of a
HttpResponse and FullHttpMessage . |
interface |
HttpContent
An HTTP chunk which is used for HTTP chunked transfer-encoding.
|
interface |
HttpMessage
An interface that defines an HTTP message, providing common properties for
HttpRequest and HttpResponse . |
interface |
HttpObject |
interface |
HttpRequest
An HTTP request.
|
interface |
HttpResponse
An HTTP response.
|
interface |
LastHttpContent
The last
HttpContent which has trailing headers. |
限定符和类型 | 类和说明 |
---|---|
class |
DefaultFullHttpRequest
Default implementation of
FullHttpRequest . |
class |
DefaultFullHttpResponse
Default implementation of a
FullHttpResponse . |
class |
DefaultHttpContent
The default
HttpContent implementation. |
class |
DefaultHttpMessage
The default
HttpMessage implementation. |
class |
DefaultHttpObject |
class |
DefaultHttpRequest
The default
HttpRequest implementation. |
class |
DefaultHttpResponse
The default
HttpResponse implementation. |
class |
DefaultLastHttpContent
The default
LastHttpContent implementation. |
限定符和类型 | 接口和说明 |
---|---|
interface |
FullMemcacheMessage
Combines
MemcacheMessage and LastMemcacheContent into one
message. |
interface |
LastMemcacheContent
The
MemcacheContent which signals the end of the content batch. |
interface |
MemcacheContent
An Memcache content chunk.
|
interface |
MemcacheMessage
Marker interface for both ascii and binary messages.
|
interface |
MemcacheObject
Defines a common interface for all
MemcacheObject implementations. |
限定符和类型 | 类和说明 |
---|---|
class |
AbstractMemcacheObject
The default
MemcacheObject implementation. |
class |
DefaultLastMemcacheContent
The default implementation for the
LastMemcacheContent . |
class |
DefaultMemcacheContent
The default
MemcacheContent implementation. |
限定符和类型 | 接口和说明 |
---|---|
interface |
BinaryMemcacheMessage
An interface that defines a binary Memcache message, providing common properties for
BinaryMemcacheRequest and BinaryMemcacheResponse . |
interface |
BinaryMemcacheRequest
Represents a full
BinaryMemcacheRequest , which contains the header and optional key and extras. |
interface |
BinaryMemcacheResponse
Represents a full
BinaryMemcacheResponse , which contains the header and optional key and extras. |
interface |
FullBinaryMemcacheRequest
A
BinaryMemcacheRequest that also includes the content. |
interface |
FullBinaryMemcacheResponse
A
BinaryMemcacheResponse that also includes the content. |
限定符和类型 | 类和说明 |
---|---|
class |
AbstractBinaryMemcacheMessage
Default implementation of a
BinaryMemcacheMessage . |
class |
DefaultBinaryMemcacheRequest
The default implementation of the
BinaryMemcacheRequest . |
class |
DefaultBinaryMemcacheResponse
The default implementation of the
BinaryMemcacheResponse . |
class |
DefaultFullBinaryMemcacheRequest
The default implementation of a
FullBinaryMemcacheRequest . |
class |
DefaultFullBinaryMemcacheResponse
The default implementation of a
FullBinaryMemcacheResponse . |
限定符和类型 | 接口和说明 |
---|---|
interface |
SocksMessage
An interface that all SOCKS protocol messages implement.
|
限定符和类型 | 类和说明 |
---|---|
class |
AbstractSocksMessage
An abstract
SocksMessage . |
限定符和类型 | 接口和说明 |
---|---|
interface |
Socks4CommandRequest
A SOCKS4a
CONNECT or BIND request. |
interface |
Socks4CommandResponse
A SOCKS4a response.
|
interface |
Socks4Message
A tag interface that all SOCKS4a protocol messages implement.
|
限定符和类型 | 类和说明 |
---|---|
class |
AbstractSocks4Message
An abstract
Socks4Message . |
class |
DefaultSocks4CommandRequest
The default
Socks4CommandRequest . |
class |
DefaultSocks4CommandResponse
The default
Socks4CommandResponse . |
限定符和类型 | 接口和说明 |
---|---|
interface |
Socks5CommandRequest
A SOCKS5 request detail message, as defined in
the section 4, RFC1928.
|
interface |
Socks5CommandResponse
A response to a SOCKS5 request detail message, as defined in
the section 6, RFC1928.
|
interface |
Socks5InitialRequest
An initial SOCKS5 authentication method selection request, as defined in
the section 3, RFC1928.
|
interface |
Socks5InitialResponse
An initial SOCKS5 authentication method selection request, as defined in
the section 3, RFC1928.
|
interface |
Socks5Message
A tag interface that all SOCKS5 protocol messages implement.
|
interface |
Socks5PasswordAuthRequest
A SOCKS5 subnegotiation request for username-password authentication, as defined in
the section 2, RFC1929.
|
interface |
Socks5PasswordAuthResponse
A SOCKS5 subnegotiation response for username-password authentication, as defined in
the section 2, RFC1929.
|
限定符和类型 | 类和说明 |
---|---|
class |
AbstractSocks5Message
An abstract
Socks5Message . |
class |
DefaultSocks5CommandRequest
The default
Socks5CommandRequest . |
class |
DefaultSocks5CommandResponse
The default
Socks5CommandResponse . |
class |
DefaultSocks5InitialRequest
The default
Socks5InitialRequest . |
class |
DefaultSocks5InitialResponse
The default
Socks5InitialResponse . |
class |
DefaultSocks5PasswordAuthRequest
The default
Socks5PasswordAuthRequest . |
class |
DefaultSocks5PasswordAuthResponse
The default
Socks5PasswordAuthResponse . |
限定符和类型 | 接口和说明 |
---|---|
interface |
LastStompContentSubframe
The last
StompContentSubframe which signals the end of the content batch
Note, even when no content is emitted by the protocol, an
empty LastStompContentSubframe is issued to make the upstream parsing
easier. |
interface |
StompContentSubframe
An STOMP chunk which is used for STOMP chunked transfer-encoding.
|
interface |
StompFrame
Combines
StompHeadersSubframe and LastStompContentSubframe into one
frame. |
interface |
StompHeadersSubframe
An interface that defines a
StompFrame 's command and headers. |
interface |
StompSubframe
Defines a common interface for all
StompSubframe implementations. |
限定符和类型 | 类和说明 |
---|---|
class |
DefaultLastStompContentSubframe
The default implementation for the
LastStompContentSubframe . |
class |
DefaultStompContentSubframe
The default
StompContentSubframe implementation. |
class |
DefaultStompFrame
Default implementation of
StompFrame . |
class |
DefaultStompHeadersSubframe
Default implementation of
StompHeadersSubframe . |