Uses of Interface
org.jboss.netty.channel.ChannelSink
Packages that use ChannelSink
Package
Description
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
A virtual transport that enables the communication between the two
parties in the same virtual machine.
An HTTP-based client-side
SocketChannel
and its corresponding server-side Servlet implementation that make your
existing server application work in a firewalled network.NIO-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
Old blocking I/O based socket channel API implementation - recommended for
a small number of connections (< 1000).
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 ChannelSinkModifier and TypeClassDescriptionclass
A skeletalChannelSink
implementation.private static final class
Fields in org.jboss.netty.channel declared as ChannelSinkModifier and TypeFieldDescription(package private) static final ChannelSink
DefaultChannelPipeline.discardingSink
private ChannelSink
DefaultChannelPipeline.sink
Methods in org.jboss.netty.channel that return ChannelSinkModifier and TypeMethodDescriptionChannelPipeline.getSink()
Returns theChannelSink
that this pipeline is attached to.DefaultChannelPipeline.getSink()
Methods in org.jboss.netty.channel with parameters of type ChannelSinkModifier and TypeMethodDescriptionvoid
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 ChannelSinkModifierConstructorDescriptionprotected
AbstractChannel
(Integer id, Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink) (Internal use only) Creates a new temporary instance with the specified ID.protected
AbstractChannel
(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink) Creates a new instance.protected
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 ChannelSinkModifier and TypeClassDescription(package private) final class
(package private) final class
Fields in org.jboss.netty.channel.local declared as ChannelSinkModifier and TypeFieldDescriptionprivate final ChannelSink
DefaultLocalClientChannelFactory.sink
private final ChannelSink
DefaultLocalServerChannelFactory.sink
Constructors in org.jboss.netty.channel.local with parameters of type ChannelSinkModifierConstructorDescription(package private)
DefaultLocalChannel
(LocalServerChannel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, DefaultLocalChannel pairedChannel) (package private)
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 ChannelSinkModifier and TypeClassDescription(package private) final class
Fields in org.jboss.netty.channel.socket.http declared as ChannelSinkModifier and TypeFieldDescriptionprivate final ChannelSink
HttpTunnelingClientSocketChannelFactory.sink
Constructors in org.jboss.netty.channel.socket.http with parameters of type ChannelSinkModifierConstructorDescription(package private)
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 ChannelSinkModifier and TypeClassDescriptionclass
(package private) class
(package private) class
Receives downstream events from aChannelPipeline
.(package private) class
Constructors in org.jboss.netty.channel.socket.nio with parameters of type ChannelSinkModifierConstructorDescriptionprotected
AbstractNioChannel
(Integer id, Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, AbstractNioWorker worker, C ch) protected
AbstractNioChannel
(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, AbstractNioWorker worker, C ch) (package private)
NioAcceptedSocketChannel
(ChannelFactory factory, ChannelPipeline pipeline, Channel parent, ChannelSink sink, SocketChannel socket, NioWorker worker, Thread bossThread) (package private)
NioClientSocketChannel
(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, NioWorker worker) (package private)
NioDatagramChannel
(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, NioDatagramWorker worker, InternetProtocolFamily family) (package private)
NioServerSocketChannel
(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, Boss boss, WorkerPool<NioWorker> workerPool) NioSocketChannel
(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, SocketChannel socket, NioWorker worker) -
Uses of ChannelSink in org.jboss.netty.channel.socket.oio
Classes in org.jboss.netty.channel.socket.oio that implement ChannelSinkModifier and TypeClassDescriptionclass
(package private) class
(package private) class
(package private) class
Fields in org.jboss.netty.channel.socket.oio declared as ChannelSinkConstructors in org.jboss.netty.channel.socket.oio with parameters of type ChannelSinkModifierConstructorDescription(package private)
AbstractOioChannel
(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink) (package private)
OioAcceptedSocketChannel
(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, Socket socket) (package private)
OioClientSocketChannel
(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink) (package private)
OioDatagramChannel
(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink) (package private)
OioServerSocketChannel
(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink) (package private)
OioSocketChannel
(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, Socket socket) -
Uses of ChannelSink in org.jboss.netty.handler.codec.embedder
Classes in org.jboss.netty.handler.codec.embedder that implement ChannelSinkConstructors in org.jboss.netty.handler.codec.embedder with parameters of type ChannelSinkModifierConstructorDescription(package private)
EmbeddedChannel
(ChannelPipeline pipeline, ChannelSink sink)