Package io.netty.channel.socket
Abstract TCP and UDP socket interfaces which extend the core channel API.
-
Interface Summary Interface Description DatagramChannel A UDP/IPChannel.DatagramChannelConfig AChannelConfigfor aDatagramChannel.DuplexChannel A duplexChannelthat has two sides that can be shutdown independently.DuplexChannelConfig AChannelConfigfor aDuplexChannel.ServerSocketChannel A TCP/IPServerChannelwhich accepts incoming TCP/IP connections.ServerSocketChannelConfig AChannelConfigfor aServerSocketChannel.SocketChannel A TCP/IP socketChannel.SocketChannelConfig AChannelConfigfor aSocketChannel. -
Class Summary Class Description ChannelInputShutdownEvent Special event which will be fired and passed to theChannelInboundHandler.userEventTriggered(ChannelHandlerContext, Object)methods once the input of aSocketChannelwas shutdown and theDuplexChannelConfig.isAllowHalfClosure()method returnstrue.ChannelInputShutdownReadComplete User event that signifies the channel's input side is shutdown, and we tried to shut it down again.ChannelOutputShutdownEvent Special event which will be fired and passed to theChannelInboundHandler.userEventTriggered(ChannelHandlerContext, Object)methods once the output of aSocketChannelwas shutdown.DatagramPacket The message container that is used forDatagramChannelto communicate with the remote peer.DefaultDatagramChannelConfig The defaultDatagramChannelConfigimplementation.DefaultServerSocketChannelConfig The defaultServerSocketChannelConfigimplementation.DefaultSocketChannelConfig The defaultSocketChannelConfigimplementation. -
Enum Summary Enum Description InternetProtocolFamily Deprecated. useSocketProtocolFamily.SocketProtocolFamily ProtocolFamilyimplementation that is used by the different transport implementations. -
Exception Summary Exception Description ChannelOutputShutdownException Used to fail pending writes when a channel's output has been shutdown.