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-sideSocketChanneland 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 classHttpTunnelingClientSocketChannelFactoryCreates a client-sideSocketChannelwhich connects to anHttpTunnelingServletto communicate with the server application behind theHttpTunnelingServlet.Fields in org.jboss.netty.channel.socket.http declared as ClientSocketChannelFactory Modifier and Type Field Description private ClientSocketChannelFactoryHttpTunnelingClientSocketChannelFactory. clientSocketChannelFactoryConstructors in org.jboss.netty.channel.socket.http with parameters of type ClientSocketChannelFactory Constructor Description HttpTunnelingClientSocketChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, ClientSocketChannelFactory clientSocketChannelFactory)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 classNioClientSocketChannelFactoryAClientSocketChannelFactorywhich 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 classOioClientSocketChannelFactoryAClientSocketChannelFactorywhich creates a client-side blocking I/O basedSocketChannel. -
Uses of ClientSocketChannelFactory in org.jboss.netty.example.proxy
Fields in org.jboss.netty.example.proxy declared as ClientSocketChannelFactory Modifier and Type Field Description private ClientSocketChannelFactoryHexDumpProxyInboundHandler. cfprivate ClientSocketChannelFactoryHexDumpProxyPipelineFactory. cfConstructors in org.jboss.netty.example.proxy with parameters of type ClientSocketChannelFactory Constructor Description HexDumpProxyInboundHandler(ClientSocketChannelFactory cf)HexDumpProxyPipelineFactory(ClientSocketChannelFactory cf)
-