Uses of Package
org.jboss.netty.channel.socket
-
Packages that use org.jboss.netty.channel.socket Package Description 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.channel.socket.oio Old blocking I/O based socket channel API implementation - recommended for a small number of connections (< 1000).org.jboss.netty.example.proxy -
Classes in org.jboss.netty.channel.socket used by org.jboss.netty.channel.socket Class Description DatagramChannel A UDP/IPChannel
which is created byDatagramChannelFactory
.DatagramChannelConfig AChannelConfig
for aDatagramChannel
.InternetProtocolFamily Internet Protocol (IP) familiesServerSocketChannel A TCP/IPServerChannel
which accepts incoming TCP/IP connections.ServerSocketChannelConfig AChannelConfig
for aServerSocketChannel
.SocketChannel A TCP/IP socketChannel
which was either accepted byServerSocketChannel
or created byClientSocketChannelFactory
.SocketChannelConfig AChannelConfig
for aSocketChannel
. -
Classes in org.jboss.netty.channel.socket used by org.jboss.netty.channel.socket.http Class Description ClientSocketChannelFactory AChannelFactory
which creates a client-sideSocketChannel
.SocketChannel A TCP/IP socketChannel
which was either accepted byServerSocketChannel
or created byClientSocketChannelFactory
.SocketChannelConfig AChannelConfig
for aSocketChannel
. -
Classes in org.jboss.netty.channel.socket used by org.jboss.netty.channel.socket.oio Class Description ClientSocketChannelFactory AChannelFactory
which creates a client-sideSocketChannel
.DatagramChannel A UDP/IPChannel
which is created byDatagramChannelFactory
.DatagramChannelConfig AChannelConfig
for aDatagramChannel
.DatagramChannelFactory AChannelFactory
which creates aDatagramChannel
.ServerSocketChannel A TCP/IPServerChannel
which accepts incoming TCP/IP connections.ServerSocketChannelConfig AChannelConfig
for aServerSocketChannel
.ServerSocketChannelFactory AChannelFactory
which creates aServerSocketChannel
.SocketChannel A TCP/IP socketChannel
which was either accepted byServerSocketChannel
or created byClientSocketChannelFactory
.SocketChannelConfig AChannelConfig
for aSocketChannel
.Worker AWorker
is responsible to dispatch IO operations -
Classes in org.jboss.netty.channel.socket used by org.jboss.netty.example.proxy Class Description ClientSocketChannelFactory AChannelFactory
which creates a client-sideSocketChannel
.