Uses of Interface
org.jboss.netty.channel.ChannelConfig
-
Packages that use ChannelConfig 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 Abstract TCP and UDP socket interfaces which extend the core channel API.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.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 ChannelConfig in org.jboss.netty.channel
Classes in org.jboss.netty.channel that implement ChannelConfig Modifier and Type Class Description class
DefaultChannelConfig
The defaultSocketChannelConfig
implementation.class
DefaultServerChannelConfig
The defaultServerSocketChannelConfig
implementation.Methods in org.jboss.netty.channel that return ChannelConfig Modifier and Type Method Description ChannelConfig
Channel. getConfig()
Returns the configuration of this channel. -
Uses of ChannelConfig in org.jboss.netty.channel.local
Fields in org.jboss.netty.channel.local declared as ChannelConfig Modifier and Type Field Description (package private) ChannelConfig
DefaultLocalServerChannel. channelConfig
private ChannelConfig
DefaultLocalChannel. config
Methods in org.jboss.netty.channel.local that return ChannelConfig Modifier and Type Method Description ChannelConfig
DefaultLocalChannel. getConfig()
ChannelConfig
DefaultLocalServerChannel. getConfig()
-
Uses of ChannelConfig in org.jboss.netty.channel.socket
Subinterfaces of ChannelConfig in org.jboss.netty.channel.socket Modifier and Type Interface Description interface
DatagramChannelConfig
AChannelConfig
for aDatagramChannel
.interface
ServerSocketChannelConfig
AChannelConfig
for aServerSocketChannel
.interface
SocketChannelConfig
AChannelConfig
for aSocketChannel
.Classes in org.jboss.netty.channel.socket that implement ChannelConfig Modifier and Type Class Description class
DefaultDatagramChannelConfig
The defaultDatagramChannelConfig
implementation.class
DefaultServerSocketChannelConfig
The defaultServerSocketChannelConfig
implementation.class
DefaultSocketChannelConfig
The defaultSocketChannelConfig
implementation. -
Uses of ChannelConfig in org.jboss.netty.channel.socket.http
Classes in org.jboss.netty.channel.socket.http that implement ChannelConfig Modifier and Type Class Description class
HttpTunnelingSocketChannelConfig
TheChannelConfig
of a client-side HTTP tunnelingSocketChannel
. -
Uses of ChannelConfig in org.jboss.netty.channel.socket.nio
Subinterfaces of ChannelConfig in org.jboss.netty.channel.socket.nio Modifier and Type Interface Description interface
NioChannelConfig
SpecialChannelConfig
sub-type which offers extra methods which are useful for NIO.interface
NioDatagramChannelConfig
ADatagramChannelConfig
for a NIO TCP/IPDatagramChannel
.interface
NioSocketChannelConfig
ASocketChannelConfig
for a NIO TCP/IPSocketChannel
.Classes in org.jboss.netty.channel.socket.nio that implement ChannelConfig Modifier and Type Class Description (package private) class
DefaultNioDatagramChannelConfig
The defaultNioSocketChannelConfig
implementation.(package private) class
DefaultNioSocketChannelConfig
The defaultNioSocketChannelConfig
implementation. -
Uses of ChannelConfig in org.jboss.netty.handler.codec.embedder
Fields in org.jboss.netty.handler.codec.embedder declared as ChannelConfig Modifier and Type Field Description private ChannelConfig
EmbeddedChannel. config
Methods in org.jboss.netty.handler.codec.embedder that return ChannelConfig Modifier and Type Method Description ChannelConfig
EmbeddedChannel. getConfig()
-