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-sideSocketChanneland 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 classAbstractChannelSinkA skeletalChannelSinkimplementation.private static classDefaultChannelPipeline.DiscardingChannelSinkFields in org.jboss.netty.channel declared as ChannelSink Modifier and Type Field Description (package private) static ChannelSinkDefaultChannelPipeline. discardingSinkprivate ChannelSinkDefaultChannelPipeline. sinkMethods in org.jboss.netty.channel that return ChannelSink Modifier and Type Method Description ChannelSinkChannelPipeline. getSink()Returns theChannelSinkthat this pipeline is attached to.ChannelSinkDefaultChannelPipeline. getSink()Methods in org.jboss.netty.channel with parameters of type ChannelSink Modifier and Type Method Description voidChannelPipeline. 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 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) classLocalClientChannelSink(package private) classLocalServerChannelSinkFields in org.jboss.netty.channel.local declared as ChannelSink Modifier and Type Field Description private ChannelSinkDefaultLocalClientChannelFactory. sinkprivate ChannelSinkDefaultLocalServerChannelFactory. sinkConstructors 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) classHttpTunnelingClientSocketPipelineSinkFields in org.jboss.netty.channel.socket.http declared as ChannelSink Modifier and Type Field Description private ChannelSinkHttpTunnelingClientSocketChannelFactory. sinkConstructors 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 classAbstractNioChannelSink(package private) classNioClientSocketPipelineSink(package private) classNioDatagramPipelineSinkReceives downstream events from aChannelPipeline.(package private) classNioServerSocketPipelineSink -
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 classAbstractOioChannelSink(package private) classOioClientSocketPipelineSink(package private) classOioDatagramPipelineSink(package private) classOioServerSocketPipelineSinkFields in org.jboss.netty.channel.socket.oio declared as ChannelSink Modifier and Type Field Description private ChannelSinkOioServerSocketChannelFactory. sinkConstructors 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 classAbstractCodecEmbedder.EmbeddedChannelSinkConstructors in org.jboss.netty.handler.codec.embedder with parameters of type ChannelSink Constructor Description EmbeddedChannel(ChannelPipeline pipeline, ChannelSink sink)
-