Uses of Class
org.jboss.netty.channel.AbstractChannel
-
Packages that use AbstractChannel Package Description 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.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.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 AbstractChannel in org.jboss.netty.channel
Subclasses of AbstractChannel in org.jboss.netty.channel Modifier and Type Class Description class
AbstractServerChannel
A skeletal server-sideChannel
implementation.Fields in org.jboss.netty.channel with type parameters of type AbstractChannel Modifier and Type Field Description private static java.util.concurrent.atomic.AtomicIntegerFieldUpdater<AbstractChannel>
AbstractChannel. UNWRITABLE_UPDATER
-
Uses of AbstractChannel in org.jboss.netty.channel.local
Subclasses of AbstractChannel in org.jboss.netty.channel.local Modifier and Type Class Description (package private) class
DefaultLocalChannel
(package private) class
DefaultLocalServerChannel
-
Uses of AbstractChannel in org.jboss.netty.channel.socket.http
Subclasses of AbstractChannel in org.jboss.netty.channel.socket.http Modifier and Type Class Description (package private) class
HttpTunnelingClientSocketChannel
-
Uses of AbstractChannel in org.jboss.netty.channel.socket.nio
Subclasses of AbstractChannel in org.jboss.netty.channel.socket.nio Modifier and Type Class Description (package private) class
AbstractNioChannel<C extends java.nio.channels.SelectableChannel & java.nio.channels.WritableByteChannel>
(package private) class
NioAcceptedSocketChannel
(package private) class
NioClientSocketChannel
class
NioDatagramChannel
Provides an NIO basedDatagramChannel
.(package private) class
NioServerSocketChannel
class
NioSocketChannel
-
Uses of AbstractChannel in org.jboss.netty.channel.socket.oio
Subclasses of AbstractChannel in org.jboss.netty.channel.socket.oio Modifier and Type Class Description (package private) class
AbstractOioChannel
(package private) class
OioAcceptedSocketChannel
(package private) class
OioClientSocketChannel
(package private) class
OioDatagramChannel
(package private) class
OioServerSocketChannel
(package private) class
OioSocketChannel
-
Uses of AbstractChannel in org.jboss.netty.handler.codec.embedder
Subclasses of AbstractChannel in org.jboss.netty.handler.codec.embedder Modifier and Type Class Description (package private) class
EmbeddedChannel
TODO Make EmbeddedChannel implement ChannelConfig and ChannelSink to reduce overhead.
-