Uses of Interface
org.jboss.netty.channel.ServerChannelFactory
-
Packages that use ServerChannelFactory Package Description org.jboss.netty.channel.local A virtual transport that enables the communication between the two parties in the same virtual machine.org.jboss.netty.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.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 ServerChannelFactory in org.jboss.netty.channel.local
Subinterfaces of ServerChannelFactory in org.jboss.netty.channel.local Modifier and Type Interface Description interface
LocalServerChannelFactory
AServerChannelFactory
that creates aLocalServerChannel
.Classes in org.jboss.netty.channel.local that implement ServerChannelFactory Modifier and Type Class Description class
DefaultLocalServerChannelFactory
The defaultLocalServerChannelFactory
implementation. -
Uses of ServerChannelFactory in org.jboss.netty.channel.socket
Subinterfaces of ServerChannelFactory in org.jboss.netty.channel.socket Modifier and Type Interface Description interface
ServerSocketChannelFactory
AChannelFactory
which creates aServerSocketChannel
. -
Uses of ServerChannelFactory in org.jboss.netty.channel.socket.nio
Classes in org.jboss.netty.channel.socket.nio that implement ServerChannelFactory Modifier and Type Class Description class
NioServerSocketChannelFactory
AServerSocketChannelFactory
which creates a server-side NIO-basedServerSocketChannel
. -
Uses of ServerChannelFactory in org.jboss.netty.channel.socket.oio
Classes in org.jboss.netty.channel.socket.oio that implement ServerChannelFactory Modifier and Type Class Description class
OioServerSocketChannelFactory
AServerSocketChannelFactory
which creates a server-side blocking I/O basedServerSocketChannel
.
-