Uses of Package
io.netty.channel.socket
-
Packages that use io.netty.channel.socket Package Description io.netty.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.io.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.socket.oio Old blocking I/O based socket channel API implementation - recommended for a small number of connections (< 1000). -
Classes in io.netty.channel.socket used by io.netty.channel.socket 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.DatagramChannel A UDP/IPChannel.DatagramChannelConfig AChannelConfigfor aDatagramChannel.DatagramPacket The message container that is used forDatagramChannelto communicate with the remote peer.DuplexChannel A duplexChannelthat has two sides that can be shutdown independently.DuplexChannelConfig AChannelConfigfor aDuplexChannel.InternetProtocolFamily Deprecated.useSocketProtocolFamily.ServerSocketChannel A TCP/IPServerChannelwhich accepts incoming TCP/IP connections.ServerSocketChannelConfig AChannelConfigfor aServerSocketChannel.SocketChannel A TCP/IP socketChannel.SocketChannelConfig AChannelConfigfor aSocketChannel.SocketProtocolFamily ProtocolFamilyimplementation that is used by the different transport implementations. -
Classes in io.netty.channel.socket used by io.netty.channel.socket.nio Class Description DatagramChannel A UDP/IPChannel.DatagramChannelConfig AChannelConfigfor aDatagramChannel.DuplexChannel A duplexChannelthat has two sides that can be shutdown independently.InternetProtocolFamily Deprecated.useSocketProtocolFamily.ServerSocketChannel A TCP/IPServerChannelwhich accepts incoming TCP/IP connections.ServerSocketChannelConfig AChannelConfigfor aServerSocketChannel.SocketChannel A TCP/IP socketChannel.SocketChannelConfig AChannelConfigfor aSocketChannel.SocketProtocolFamily ProtocolFamilyimplementation that is used by the different transport implementations. -
Classes in io.netty.channel.socket used by io.netty.channel.socket.oio Class Description DatagramChannel A UDP/IPChannel.DatagramChannelConfig AChannelConfigfor aDatagramChannel.DefaultServerSocketChannelConfig The defaultServerSocketChannelConfigimplementation.DefaultSocketChannelConfig The defaultSocketChannelConfigimplementation.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.