请参阅: 说明
接口 | 说明 |
---|---|
DatagramChannel |
A UDP/IP
Channel . |
DatagramChannelConfig |
A
ChannelConfig for a DatagramChannel . |
DuplexChannel |
A duplex
Channel that has two sides that can be shutdown independently. |
ServerSocketChannel |
A TCP/IP
ServerChannel which accepts incoming TCP/IP connections. |
ServerSocketChannelConfig |
A
ChannelConfig for a ServerSocketChannel . |
SocketChannel |
A TCP/IP socket
Channel . |
SocketChannelConfig |
A
ChannelConfig for a SocketChannel . |
类 | 说明 |
---|---|
ChannelInputShutdownEvent |
Special event which will be fired and passed to the
ChannelInboundHandler.userEventTriggered(ChannelHandlerContext, Object) methods once the input of
a SocketChannel was shutdown and the SocketChannelConfig.isAllowHalfClosure() method returns
true . |
ChannelOutputShutdownEvent |
Special event which will be fired and passed to the
ChannelInboundHandler.userEventTriggered(ChannelHandlerContext, Object) methods once the output of
a SocketChannel was shutdown. |
DatagramPacket |
The message container that is used for
DatagramChannel to communicate with the remote peer. |
DefaultDatagramChannelConfig |
The default
DatagramChannelConfig implementation. |
DefaultServerSocketChannelConfig |
The default
ServerSocketChannelConfig implementation. |
DefaultSocketChannelConfig |
The default
SocketChannelConfig implementation. |
枚举 | 说明 |
---|---|
InternetProtocolFamily |
Internet Protocol (IP) families used byte the
DatagramChannel |
异常错误 | 说明 |
---|---|
ChannelOutputShutdownException |
Used to fail pending writes when a channel's output has been shutdown.
|