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.
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).
-
Uses of ChannelSink in org.jboss.netty.channel
Classes in org.jboss.netty.channel that implement ChannelSinkMethods in org.jboss.netty.channel that return ChannelSinkModifier and TypeMethodDescriptionChannelPipeline.getSink()Returns theChannelSinkthat this pipeline is attached to.DefaultChannelPipeline.getSink()Methods in org.jboss.netty.channel with parameters of type ChannelSinkModifier and TypeMethodDescriptionvoidChannelPipeline.attach(Channel channel, ChannelSink sink) Attaches this pipeline to the specifiedChannelandChannelSink.voidDefaultChannelPipeline.attach(Channel channel, ChannelSink sink) Constructors in org.jboss.netty.channel with parameters of type ChannelSinkModifierConstructorDescriptionprotectedAbstractChannel(Integer id, Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink) (Internal use only) Creates a new temporary instance with the specified ID.protectedAbstractChannel(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink) Creates a new instance.protectedAbstractServerChannel(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 ChannelSinkConstructors in org.jboss.netty.channel.socket.nio with parameters of type ChannelSinkModifierConstructorDescriptionNioSocketChannel(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