Uses of Interface
org.jboss.netty.channel.ChannelFactory
-
Packages that use ChannelFactory Package Description org.jboss.netty.bootstrap IoC/DI friendly helper classes which enable an easy implementation of typical client side and server side channel initialization.org.jboss.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.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.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.http.tunnel org.jboss.netty.handler.codec.embedder A helper that wraps an encoder or a decoder so that they can be used without doing actual I/O in unit tests or higher level codecs. -
-
Uses of ChannelFactory in org.jboss.netty.bootstrap
Fields in org.jboss.netty.bootstrap declared as ChannelFactory Modifier and Type Field Description private ChannelFactoryBootstrap. factoryMethods in org.jboss.netty.bootstrap that return ChannelFactory Modifier and Type Method Description ChannelFactoryBootstrap. getFactory()Returns theChannelFactorythat will be used to perform an I/O operation.Methods in org.jboss.netty.bootstrap with parameters of type ChannelFactory Modifier and Type Method Description voidBootstrap. setFactory(ChannelFactory factory)Sets theChannelFactorythat will be used to perform an I/O operation.voidServerBootstrap. setFactory(ChannelFactory factory)Sets theServerChannelFactorythat will be used to perform an I/O operation.Constructors in org.jboss.netty.bootstrap with parameters of type ChannelFactory Constructor Description Bootstrap(ChannelFactory channelFactory)Creates a new instance with the specified initialChannelFactory.ClientBootstrap(ChannelFactory channelFactory)Creates a new instance with the specified initialChannelFactory.ConnectionlessBootstrap(ChannelFactory channelFactory)Creates a new instance with the specified initialChannelFactory.ServerBootstrap(ChannelFactory channelFactory)Creates a new instance with the specified initialChannelFactory. -
Uses of ChannelFactory in org.jboss.netty.channel
Subinterfaces of ChannelFactory in org.jboss.netty.channel Modifier and Type Interface Description interfaceServerChannelFactoryAChannelFactorythat creates aServerChannel.Fields in org.jboss.netty.channel declared as ChannelFactory Modifier and Type Field Description private ChannelFactoryAbstractChannel. factoryMethods in org.jboss.netty.channel that return ChannelFactory Modifier and Type Method Description ChannelFactoryAbstractChannel. getFactory()ChannelFactoryChannel. getFactory()Returns theChannelFactorywhich created this channel.Constructors in org.jboss.netty.channel with parameters of type ChannelFactory Constructor Description AbstractChannel(java.lang.Integer id, Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)(Internal use only) Creates a new temporary instance with the specified ID.AbstractChannel(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)Creates a new instance.AbstractServerChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)Creates a new instance. -
Uses of ChannelFactory in org.jboss.netty.channel.local
Subinterfaces of ChannelFactory in org.jboss.netty.channel.local Modifier and Type Interface Description interfaceLocalClientChannelFactoryAChannelFactorythat creates a client-sideLocalChannel.interfaceLocalServerChannelFactoryAServerChannelFactorythat creates aLocalServerChannel.Classes in org.jboss.netty.channel.local that implement ChannelFactory Modifier and Type Class Description classDefaultLocalClientChannelFactoryThe defaultLocalClientChannelFactoryimplementation.classDefaultLocalServerChannelFactoryThe defaultLocalServerChannelFactoryimplementation.Constructors in org.jboss.netty.channel.local with parameters of type ChannelFactory Constructor Description DefaultLocalChannel(LocalServerChannel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, DefaultLocalChannel pairedChannel)DefaultLocalServerChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink) -
Uses of ChannelFactory in org.jboss.netty.channel.socket
Subinterfaces of ChannelFactory in org.jboss.netty.channel.socket Modifier and Type Interface Description interfaceClientSocketChannelFactoryAChannelFactorywhich creates a client-sideSocketChannel.interfaceDatagramChannelFactoryAChannelFactorywhich creates aDatagramChannel.interfaceServerSocketChannelFactoryAChannelFactorywhich creates aServerSocketChannel. -
Uses of ChannelFactory in org.jboss.netty.channel.socket.http
Classes in org.jboss.netty.channel.socket.http that implement ChannelFactory 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 ChannelFactory Modifier and Type Field Description private ChannelFactoryHttpTunnelingServlet. channelFactoryMethods in org.jboss.netty.channel.socket.http that return ChannelFactory Modifier and Type Method Description protected ChannelFactoryHttpTunnelingServlet. createChannelFactory(java.net.SocketAddress remoteAddress)Methods in org.jboss.netty.channel.socket.http with parameters of type ChannelFactory Modifier and Type Method Description protected voidHttpTunnelingServlet. destroyChannelFactory(ChannelFactory factory)Constructors in org.jboss.netty.channel.socket.http with parameters of type ChannelFactory Constructor Description HttpTunnelingClientSocketChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, ClientSocketChannelFactory clientSocketChannelFactory) -
Uses of ChannelFactory in org.jboss.netty.channel.socket.nio
Classes in org.jboss.netty.channel.socket.nio that implement ChannelFactory Modifier and Type Class Description classNioClientSocketChannelFactoryAClientSocketChannelFactorywhich creates a client-side NIO-basedSocketChannel.classNioDatagramChannelFactoryADatagramChannelFactorythat creates a NIO-based connectionlessDatagramChannel.classNioServerSocketChannelFactoryAServerSocketChannelFactorywhich creates a server-side NIO-basedServerSocketChannel. -
Uses of ChannelFactory in org.jboss.netty.channel.socket.oio
Classes in org.jboss.netty.channel.socket.oio that implement ChannelFactory Modifier and Type Class Description classOioClientSocketChannelFactoryAClientSocketChannelFactorywhich creates a client-side blocking I/O basedSocketChannel.classOioDatagramChannelFactoryADatagramChannelFactorywhich creates a blocking I/O basedDatagramChannel.classOioServerSocketChannelFactoryAServerSocketChannelFactorywhich creates a server-side blocking I/O basedServerSocketChannel.Constructors in org.jboss.netty.channel.socket.oio with parameters of type ChannelFactory Constructor Description AbstractOioChannel(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)OioAcceptedSocketChannel(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, java.net.Socket socket)OioClientSocketChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)OioDatagramChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)OioServerSocketChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)OioSocketChannel(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, java.net.Socket socket) -
Uses of ChannelFactory in org.jboss.netty.example.http.tunnel
Fields in org.jboss.netty.example.http.tunnel declared as ChannelFactory Modifier and Type Field Description private ChannelFactoryLocalEchoServerRegistration. factory -
Uses of ChannelFactory in org.jboss.netty.handler.codec.embedder
Classes in org.jboss.netty.handler.codec.embedder that implement ChannelFactory Modifier and Type Class Description (package private) classEmbeddedChannelFactoryFields in org.jboss.netty.handler.codec.embedder declared as ChannelFactory Modifier and Type Field Description (package private) static ChannelFactoryEmbeddedChannelFactory. INSTANCE
-