Uses of Interface
org.jboss.netty.channel.socket.SocketChannel
-
Packages that use SocketChannel 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). -
-
Uses of SocketChannel in org.jboss.netty.channel.socket
Methods in org.jboss.netty.channel.socket that return SocketChannel Modifier and Type Method Description SocketChannel
ClientSocketChannelFactory. newChannel(ChannelPipeline pipeline)
-
Uses of SocketChannel in org.jboss.netty.channel.socket.http
Classes in org.jboss.netty.channel.socket.http that implement SocketChannel Modifier and Type Class Description (package private) class
HttpTunnelingClientSocketChannel
Fields in org.jboss.netty.channel.socket.http declared as SocketChannel Modifier and Type Field Description (package private) SocketChannel
HttpTunnelingClientSocketChannel. realChannel
(package private) SocketChannel
HttpTunnelingClientSocketChannel.ServletChannelHandler. virtualChannel
Methods in org.jboss.netty.channel.socket.http that return SocketChannel Modifier and Type Method Description SocketChannel
HttpTunnelingClientSocketChannelFactory. newChannel(ChannelPipeline pipeline)
-
Uses of SocketChannel in org.jboss.netty.channel.socket.nio
Classes in org.jboss.netty.channel.socket.nio that implement SocketChannel Modifier and Type Class Description (package private) class
NioAcceptedSocketChannel
(package private) class
NioClientSocketChannel
class
NioSocketChannel
Methods in org.jboss.netty.channel.socket.nio that return SocketChannel Modifier and Type Method Description SocketChannel
NioClientSocketChannelFactory. newChannel(ChannelPipeline pipeline)
-
Uses of SocketChannel in org.jboss.netty.channel.socket.oio
Classes in org.jboss.netty.channel.socket.oio that implement SocketChannel Modifier and Type Class Description (package private) class
OioAcceptedSocketChannel
(package private) class
OioClientSocketChannel
(package private) class
OioSocketChannel
Methods in org.jboss.netty.channel.socket.oio that return SocketChannel Modifier and Type Method Description SocketChannel
OioClientSocketChannelFactory. newChannel(ChannelPipeline pipeline)
-