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.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 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.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(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.socket.nio
Classes in org.jboss.netty.channel.socket.nio that implement ChannelSink Modifier and Type Class Description class
AbstractNioChannelSink
Constructors in org.jboss.netty.channel.socket.nio with parameters of type ChannelSink Constructor Description 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 ChannelSink Modifier and Type Class Description class
AbstractOioChannelSink
-