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-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.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 classAbstractServerChannelA skeletal server-sideChannelimplementation.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) classDefaultLocalChannel(package private) classDefaultLocalServerChannel -
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) classHttpTunnelingClientSocketChannel -
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) classAbstractNioChannel<C extends java.nio.channels.SelectableChannel & java.nio.channels.WritableByteChannel>(package private) classNioAcceptedSocketChannel(package private) classNioClientSocketChannelclassNioDatagramChannelProvides an NIO basedDatagramChannel.(package private) classNioServerSocketChannelclassNioSocketChannel -
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) classAbstractOioChannel(package private) classOioAcceptedSocketChannel(package private) classOioClientSocketChannel(package private) classOioDatagramChannel(package private) classOioServerSocketChannel(package private) classOioSocketChannel -
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) classEmbeddedChannelTODO Make EmbeddedChannel implement ChannelConfig and ChannelSink to reduce overhead.
-