Uses of Interface
org.jboss.netty.channel.socket.ClientSocketChannelFactory
-
Packages that use ClientSocketChannelFactory Package Description org.jboss.netty.channel.socket.http An HTTP-based client-sideSocketChannel
and its corresponding server-side Servlet implementation that make your existing server application work in a firewalled network.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).org.jboss.netty.example.proxy -
-
Uses of ClientSocketChannelFactory in org.jboss.netty.channel.socket.http
Classes in org.jboss.netty.channel.socket.http that implement ClientSocketChannelFactory Modifier and Type Class Description class
HttpTunnelingClientSocketChannelFactory
Creates a client-sideSocketChannel
which connects to anHttpTunnelingServlet
to communicate with the server application behind theHttpTunnelingServlet
.Constructors in org.jboss.netty.channel.socket.http with parameters of type ClientSocketChannelFactory Constructor Description HttpTunnelingClientSocketChannelFactory(ClientSocketChannelFactory clientSocketChannelFactory)
Creates a new instance. -
Uses of ClientSocketChannelFactory in org.jboss.netty.channel.socket.nio
Classes in org.jboss.netty.channel.socket.nio that implement ClientSocketChannelFactory Modifier and Type Class Description class
NioClientSocketChannelFactory
AClientSocketChannelFactory
which creates a client-side NIO-basedSocketChannel
. -
Uses of ClientSocketChannelFactory in org.jboss.netty.channel.socket.oio
Classes in org.jboss.netty.channel.socket.oio that implement ClientSocketChannelFactory Modifier and Type Class Description class
OioClientSocketChannelFactory
AClientSocketChannelFactory
which creates a client-side blocking I/O basedSocketChannel
. -
Uses of ClientSocketChannelFactory in org.jboss.netty.example.proxy
Constructors in org.jboss.netty.example.proxy with parameters of type ClientSocketChannelFactory Constructor Description HexDumpProxyInboundHandler(ClientSocketChannelFactory cf)
HexDumpProxyPipelineFactory(ClientSocketChannelFactory cf)
-