Uses of Interface
org.jboss.netty.channel.ChannelSink
-
Packages that use ChannelSink 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-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.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 ChannelSink in org.jboss.netty.channel
Classes in org.jboss.netty.channel that implement ChannelSink Modifier and Type Class Description class
AbstractChannelSink
A skeletalChannelSink
implementation.private static class
DefaultChannelPipeline.DiscardingChannelSink
Fields in org.jboss.netty.channel declared as ChannelSink Modifier and Type Field Description (package private) static ChannelSink
DefaultChannelPipeline. discardingSink
private ChannelSink
DefaultChannelPipeline. sink
Methods in org.jboss.netty.channel that return ChannelSink Modifier and Type Method Description ChannelSink
ChannelPipeline. getSink()
Returns theChannelSink
that this pipeline is attached to.ChannelSink
DefaultChannelPipeline. getSink()
Methods in org.jboss.netty.channel with parameters of type ChannelSink Modifier and Type Method Description void
ChannelPipeline. attach(Channel channel, ChannelSink sink)
Attaches this pipeline to the specifiedChannel
andChannelSink
.void
DefaultChannelPipeline. attach(Channel channel, ChannelSink sink)
Constructors in org.jboss.netty.channel with parameters of type ChannelSink Constructor Description AbstractChannel(java.lang.Integer id, Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)
(Internal use only) Creates a new temporary instance with the specified ID.AbstractChannel(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)
Creates a new instance.AbstractServerChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)
Creates a new instance. -
Uses of ChannelSink in org.jboss.netty.channel.local
Classes in org.jboss.netty.channel.local that implement ChannelSink Modifier and Type Class Description (package private) class
LocalClientChannelSink
(package private) class
LocalServerChannelSink
Fields in org.jboss.netty.channel.local declared as ChannelSink Modifier and Type Field Description private ChannelSink
DefaultLocalClientChannelFactory. sink
private ChannelSink
DefaultLocalServerChannelFactory. sink
Constructors in org.jboss.netty.channel.local with parameters of type ChannelSink Constructor Description DefaultLocalChannel(LocalServerChannel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, DefaultLocalChannel pairedChannel)
DefaultLocalServerChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)
-
Uses of ChannelSink in org.jboss.netty.channel.socket.http
Classes in org.jboss.netty.channel.socket.http that implement ChannelSink Modifier and Type Class Description (package private) class
HttpTunnelingClientSocketPipelineSink
Fields in org.jboss.netty.channel.socket.http declared as ChannelSink Modifier and Type Field Description private ChannelSink
HttpTunnelingClientSocketChannelFactory. sink
Constructors in org.jboss.netty.channel.socket.http with parameters of type ChannelSink Constructor Description HttpTunnelingClientSocketChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, ClientSocketChannelFactory clientSocketChannelFactory)
-
Uses of ChannelSink in org.jboss.netty.channel.socket.nio
Classes in org.jboss.netty.channel.socket.nio that implement ChannelSink Modifier and Type Class Description class
AbstractNioChannelSink
(package private) class
NioClientSocketPipelineSink
(package private) class
NioDatagramPipelineSink
Receives downstream events from aChannelPipeline
.(package private) class
NioServerSocketPipelineSink
-
Uses of ChannelSink in org.jboss.netty.channel.socket.oio
Classes in org.jboss.netty.channel.socket.oio that implement ChannelSink Modifier and Type Class Description class
AbstractOioChannelSink
(package private) class
OioClientSocketPipelineSink
(package private) class
OioDatagramPipelineSink
(package private) class
OioServerSocketPipelineSink
Fields in org.jboss.netty.channel.socket.oio declared as ChannelSink Modifier and Type Field Description private ChannelSink
OioServerSocketChannelFactory. sink
Constructors in org.jboss.netty.channel.socket.oio with parameters of type ChannelSink Constructor Description AbstractOioChannel(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)
OioAcceptedSocketChannel(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, java.net.Socket socket)
OioClientSocketChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)
OioDatagramChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)
OioServerSocketChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)
OioSocketChannel(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, java.net.Socket socket)
-
Uses of ChannelSink in org.jboss.netty.handler.codec.embedder
Classes in org.jboss.netty.handler.codec.embedder that implement ChannelSink Modifier and Type Class Description private class
AbstractCodecEmbedder.EmbeddedChannelSink
Constructors in org.jboss.netty.handler.codec.embedder with parameters of type ChannelSink Constructor Description EmbeddedChannel(ChannelPipeline pipeline, ChannelSink sink)
-