Uses of Interface
org.jboss.netty.channel.socket.DatagramChannelFactory
-
Packages that use DatagramChannelFactory Package Description org.jboss.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).org.jboss.netty.channel.socket.oio Old blocking I/O based socket channel API implementation - recommended for a small number of connections (< 1000). -
-
Uses of DatagramChannelFactory in org.jboss.netty.channel.socket.nio
Classes in org.jboss.netty.channel.socket.nio that implement DatagramChannelFactory Modifier and Type Class Description class
NioDatagramChannelFactory
ADatagramChannelFactory
that creates a NIO-based connectionlessDatagramChannel
. -
Uses of DatagramChannelFactory in org.jboss.netty.channel.socket.oio
Classes in org.jboss.netty.channel.socket.oio that implement DatagramChannelFactory Modifier and Type Class Description class
OioDatagramChannelFactory
ADatagramChannelFactory
which creates a blocking I/O basedDatagramChannel
.
-