| 程序包 | 说明 |
|---|---|
| io.netty.example.factorial | |
| io.netty.example.portunification | |
| io.netty.handler.codec |
Extensible decoder and its common implementations which deal with the
packet fragmentation and reassembly issue found in a stream-based transport
such as TCP/IP.
|
| io.netty.handler.codec.compression | |
| io.netty.handler.codec.haproxy |
Decodes an HAProxy proxy protocol header
|
| io.netty.handler.codec.http |
Encoder, decoder and their related message types for HTTP.
|
| io.netty.handler.codec.http.websocketx |
Encoder, decoder, handshakers and their related message types for
Web Socket data frames.
|
| io.netty.handler.codec.marshalling |
Decoder and Encoder which uses JBoss Marshalling.
|
| io.netty.handler.codec.protobuf |
Encoder and decoder which transform a
Google Protocol Buffers
com.google.protobuf.Message into a ByteBuf
and vice versa. |
| io.netty.handler.codec.rtsp |
An RTSP
extension based on the HTTP codec.
|
| io.netty.handler.codec.serialization |
Encoder, decoder and their compatibility stream implementations which
transform a
Serializable object into a byte buffer and
vice versa. |
| io.netty.handler.codec.socks |
Encoder, decoder and their related message types for Socks.
|
| io.netty.handler.codec.spdy |
Encoder, decoder, session handler and their related message types for the SPDY protocol.
|
| io.netty.handler.ssl |
SSL ·
TLS implementation based on
SSLEngine |
| 限定符和类型 | 类和说明 |
|---|---|
class |
BigIntegerDecoder
Decodes the binary representation of a
BigInteger prepended
with a magic number ('F' or 0x46) and a 32-bit integer length prefix into a
BigInteger instance. |
| 限定符和类型 | 类和说明 |
|---|---|
class |
PortUnificationServerHandler
Manipulates the current pipeline dynamically to switch protocols or enable
SSL or GZIP.
|
| 限定符和类型 | 类和说明 |
|---|---|
class |
DelimiterBasedFrameDecoder
A decoder that splits the received
ByteBufs by one or more
delimiters. |
class |
FixedLengthFrameDecoder
A decoder that splits the received
ByteBufs by the fixed number
of bytes. |
class |
LengthFieldBasedFrameDecoder
A decoder that splits the received
ByteBufs dynamically by the
value of the length field in the message. |
class |
LineBasedFrameDecoder
A decoder that splits the received
ByteBufs on line endings. |
class |
ReplayingDecoder<S>
A specialized variation of
ByteToMessageDecoder which enables implementation
of a non-blocking decoder in the blocking I/O paradigm. |
| 限定符和类型 | 类和说明 |
|---|---|
class |
JdkZlibDecoder
Decompress a
ByteBuf using the inflate algorithm. |
class |
JZlibDecoder |
class |
SnappyFramedDecoder
Uncompresses a
ByteBuf encoded with the Snappy framing format. |
class |
ZlibDecoder
Decompresses a
ByteBuf using the deflate algorithm. |
| 限定符和类型 | 类和说明 |
|---|---|
class |
HAProxyMessageDecoder
Decodes an HAProxy proxy protocol header
|
| 限定符和类型 | 类和说明 |
|---|---|
class |
HttpObjectDecoder
|
class |
HttpRequestDecoder
|
class |
HttpResponseDecoder
|
| 限定符和类型 | 类和说明 |
|---|---|
class |
WebSocket00FrameDecoder
Decodes
ByteBufs into WebSocketFrames. |
class |
WebSocket07FrameDecoder
Decodes a web socket frame from wire protocol version 7 format.
|
class |
WebSocket08FrameDecoder
Decodes a web socket frame from wire protocol version 8 format.
|
class |
WebSocket13FrameDecoder
Decodes a web socket frame from wire protocol version 13 format.
|
| 限定符和类型 | 类和说明 |
|---|---|
class |
CompatibleMarshallingDecoder
|
class |
MarshallingDecoder
Decoder which MUST be used with
MarshallingEncoder. |
| 限定符和类型 | 类和说明 |
|---|---|
class |
ProtobufVarint32FrameDecoder
A decoder that splits the received
ByteBufs dynamically by the
value of the Google Protocol Buffers
Base
128 Varints integer length field in the message. |
| 限定符和类型 | 类和说明 |
|---|---|
class |
RtspDecoder
Decodes
ByteBufs into RTSP messages represented in
HttpMessages. |
class |
RtspObjectDecoder
已过时。
Use
RtspDecoder instead. |
class |
RtspRequestDecoder
已过时。
Use
RtspDecoder directly instead |
class |
RtspResponseDecoder
已过时。
Use
RtspDecoder directly instead |
| 限定符和类型 | 类和说明 |
|---|---|
class |
ObjectDecoder
A decoder which deserializes the received
ByteBufs into Java
objects. |
| 限定符和类型 | 类和说明 |
|---|---|
class |
SocksAuthRequestDecoder
Decodes
ByteBufs into SocksAuthRequest. |
class |
SocksAuthResponseDecoder
Decodes
ByteBufs into SocksAuthResponse. |
class |
SocksCmdRequestDecoder
Decodes
ByteBufs into SocksCmdRequest. |
class |
SocksCmdResponseDecoder
Decodes
ByteBufs into SocksCmdResponse. |
class |
SocksInitRequestDecoder
Decodes
ByteBufs into SocksInitRequest. |
class |
SocksInitResponseDecoder
Decodes
ByteBufs into SocksInitResponse. |
| 限定符和类型 | 类和说明 |
|---|---|
class |
SpdyFrameCodec
A
ChannelHandler that encodes and decodes SPDY Frames. |
class |
SpdyOrHttpChooser
已过时。
Use
ApplicationProtocolNegotiationHandler instead. |
| 限定符和类型 | 类和说明 |
|---|---|
class |
OptionalSslHandler
OptionalSslHandler is a utility decoder to support both SSL and non-SSL handlers
based on the first message received. |
class |
SniHandler
Enables SNI
(Server Name Indication) extension for server side SSL.
|
class |
SslHandler
|