Uses of Interface
org.jboss.netty.channel.socket.ServerSocketChannelFactory
-
Packages that use ServerSocketChannelFactory 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 ServerSocketChannelFactory in org.jboss.netty.channel.socket.nio
Classes in org.jboss.netty.channel.socket.nio that implement ServerSocketChannelFactory Modifier and Type Class Description class
NioServerSocketChannelFactory
AServerSocketChannelFactory
which creates a server-side NIO-basedServerSocketChannel
. -
Uses of ServerSocketChannelFactory in org.jboss.netty.channel.socket.oio
Classes in org.jboss.netty.channel.socket.oio that implement ServerSocketChannelFactory Modifier and Type Class Description class
OioServerSocketChannelFactory
AServerSocketChannelFactory
which creates a server-side blocking I/O basedServerSocketChannel
.
-