Uses of Interface
org.jboss.netty.channel.ChannelDownstreamHandler

Packages that use ChannelDownstreamHandler
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.handler.codec.base64 Encoder and decoder which transform a Base64-encoded String or ChannelBuffer into a decoded ChannelBuffer and vice versa. 
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. 
org.jboss.netty.handler.codec.frame Extensible decoder and its common implementations which deal with the packet fragmentation and reassembly issue found in a stream-based transport such as TCP/IP. 
org.jboss.netty.handler.codec.http Encoder, decoder and their related message types for HTTP. 
org.jboss.netty.handler.codec.oneone Simplistic abstract classes which help implement encoder and decoder that transform an object into another object and vice versa. 
org.jboss.netty.handler.codec.protobuf Encoder and decoder which transform a Google Protocol Buffers Message into a ChannelBuffer and vice versa. 
org.jboss.netty.handler.codec.serialization Encoder, decoder and their compatibility stream implementations which transform a Serializable object into a byte buffer and vice versa. 
org.jboss.netty.handler.codec.string Encoder and decoder which transform a String into a ChannelBuffer and vice versa. 
org.jboss.netty.handler.execution Executor-based implementation of various thread models and memory overload prevention mechanisms. 
org.jboss.netty.handler.logging Logs a ChannelEvent for debugging purpose using an InternalLogger
org.jboss.netty.handler.ssl SSL · TLS implementation based on SSLEngine 
org.jboss.netty.handler.stream Writes very large data stream asynchronously neither spending a lot of memory nor getting OutOfMemoryError
org.jboss.netty.handler.timeout Adds support for read and write timeout and idle connection notification using a Timer
 

Uses of ChannelDownstreamHandler in org.jboss.netty.channel
 

Classes in org.jboss.netty.channel that implement ChannelDownstreamHandler
 class SimpleChannelDownstreamHandler
          A ChannelDownstreamHandler which provides an individual handler method for each event type.
 class SimpleChannelHandler
          A ChannelHandler which provides an individual handler method for each event type.
 

Uses of ChannelDownstreamHandler in org.jboss.netty.handler.codec.base64
 

Classes in org.jboss.netty.handler.codec.base64 that implement ChannelDownstreamHandler
 class Base64Encoder
          Encodes a ChannelBuffer into a Base64-encoded ChannelBuffer.
 

Uses of ChannelDownstreamHandler in org.jboss.netty.handler.codec.embedder
 

Constructors in org.jboss.netty.handler.codec.embedder with parameters of type ChannelDownstreamHandler
EncoderEmbedder(ChannelBufferFactory bufferFactory, ChannelDownstreamHandler... handlers)
          Creates a new embedder whose pipeline is composed of the specified handlers.
EncoderEmbedder(ChannelDownstreamHandler... handlers)
          Creates a new embedder whose pipeline is composed of the specified handlers.
 

Uses of ChannelDownstreamHandler in org.jboss.netty.handler.codec.frame
 

Classes in org.jboss.netty.handler.codec.frame that implement ChannelDownstreamHandler
 class LengthFieldPrepender
          An encoder that prepends the length of the message.
 

Uses of ChannelDownstreamHandler in org.jboss.netty.handler.codec.http
 

Classes in org.jboss.netty.handler.codec.http that implement ChannelDownstreamHandler
 class HttpMessageEncoder
          Encodes an HttpMessage or an HttpChunk into a ChannelBuffer.
 class HttpRequestEncoder
          Encodes an HttpRequest or an HttpChunk into a ChannelBuffer.
 class HttpResponseEncoder
          Encodes an HttpResponse or an HttpChunk into a ChannelBuffer.
 

Uses of ChannelDownstreamHandler in org.jboss.netty.handler.codec.oneone
 

Classes in org.jboss.netty.handler.codec.oneone that implement ChannelDownstreamHandler
 class OneToOneEncoder
          Transforms a received message into another message.
 

Uses of ChannelDownstreamHandler in org.jboss.netty.handler.codec.protobuf
 

Classes in org.jboss.netty.handler.codec.protobuf that implement ChannelDownstreamHandler
 class ProtobufEncoder
          Encodes the requested Google Protocol Buffers Message into a ChannelBuffer.
 

Uses of ChannelDownstreamHandler in org.jboss.netty.handler.codec.serialization
 

Classes in org.jboss.netty.handler.codec.serialization that implement ChannelDownstreamHandler
 class CompatibleObjectEncoder
          An encoder which serializes a Java object into a ChannelBuffer (interoperability version).
 class ObjectEncoder
          An encoder which serializes a Java object into a ChannelBuffer.
 

Uses of ChannelDownstreamHandler in org.jboss.netty.handler.codec.string
 

Classes in org.jboss.netty.handler.codec.string that implement ChannelDownstreamHandler
 class StringEncoder
          Encodes the requested String into a ChannelBuffer.
 

Uses of ChannelDownstreamHandler in org.jboss.netty.handler.execution
 

Classes in org.jboss.netty.handler.execution that implement ChannelDownstreamHandler
 class ExecutionHandler
          Forwards an upstream ChannelEvent to an Executor.
 

Uses of ChannelDownstreamHandler in org.jboss.netty.handler.logging
 

Classes in org.jboss.netty.handler.logging that implement ChannelDownstreamHandler
 class LoggingHandler
          A ChannelHandler that logs all events via InternalLogger.
 

Uses of ChannelDownstreamHandler in org.jboss.netty.handler.ssl
 

Classes in org.jboss.netty.handler.ssl that implement ChannelDownstreamHandler
 class SslHandler
          Adds SSL · TLS and StartTLS support to a Channel.
 

Uses of ChannelDownstreamHandler in org.jboss.netty.handler.stream
 

Classes in org.jboss.netty.handler.stream that implement ChannelDownstreamHandler
 class ChunkedWriteHandler
          A ChannelHandler that adds support for writing a large data stream asynchronously neither spending a lot of memory nor getting OutOfMemoryError.
 

Uses of ChannelDownstreamHandler in org.jboss.netty.handler.timeout
 

Classes in org.jboss.netty.handler.timeout that implement ChannelDownstreamHandler
 class IdleStateAwareChannelHandler
          An extended SimpleChannelHandler that adds the handler method for an IdleStateEvent.
 class WriteTimeoutHandler
          Raises a WriteTimeoutException when no data was written within a certain period of time.
 



Copyright © 2008-2009 JBoss, by Red Hat. All Rights Reserved.