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.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). -
-
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.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
.
-