Uses of Class
org.jboss.netty.channel.ChannelHandler.Sharable

Packages that use ChannelHandler.Sharable
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.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.websocket Encoder, decoder and their related message types for Web Socket data frames. 
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.rtsp An RTSP extension based on the HTTP codec. 
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 that separate business logic from I/O threads 
org.jboss.netty.handler.logging Logs a ChannelEvent for debugging purpose using an InternalLogger
org.jboss.netty.handler.timeout Adds support for read and write timeout and idle connection notification using a Timer
 

Uses of ChannelHandler.Sharable in org.jboss.netty.handler.codec.base64
 

Classes in org.jboss.netty.handler.codec.base64 with annotations of type ChannelHandler.Sharable
 class Base64Decoder
          Decodes a Base64-encoded ChannelBuffer or US-ASCII String into a ChannelBuffer.
 class Base64Encoder
          Encodes a ChannelBuffer into a Base64-encoded ChannelBuffer.
 

Uses of ChannelHandler.Sharable in org.jboss.netty.handler.codec.frame
 

Classes in org.jboss.netty.handler.codec.frame with annotations of type ChannelHandler.Sharable
 class LengthFieldPrepender
          An encoder that prepends the length of the message.
 

Uses of ChannelHandler.Sharable in org.jboss.netty.handler.codec.http.websocket
 

Classes in org.jboss.netty.handler.codec.http.websocket with annotations of type ChannelHandler.Sharable
 class WebSocketFrameEncoder
          Encodes a WebSocketFrame into a ChannelBuffer.
 

Uses of ChannelHandler.Sharable in org.jboss.netty.handler.codec.protobuf
 

Classes in org.jboss.netty.handler.codec.protobuf with annotations of type ChannelHandler.Sharable
 class ProtobufDecoder
          Decodes a received ChannelBuffer into a Google Protocol Buffers Message and MessageLite.
 class ProtobufEncoder
          Encodes the requested Google Protocol Buffers Message and MessageLite into a ChannelBuffer.
 class ProtobufVarint32LengthFieldPrepender
          An encoder that prepends the the Google Protocol Buffers Base 128 Varints integer length field.
 

Uses of ChannelHandler.Sharable in org.jboss.netty.handler.codec.rtsp
 

Classes in org.jboss.netty.handler.codec.rtsp with annotations of type ChannelHandler.Sharable
 class RtspMessageEncoder
          Encodes an RTSP message represented in HttpMessage into a ChannelBuffer.
 

Uses of ChannelHandler.Sharable in org.jboss.netty.handler.codec.serialization
 

Classes in org.jboss.netty.handler.codec.serialization with annotations of type ChannelHandler.Sharable
 class ObjectEncoder
          An encoder which serializes a Java object into a ChannelBuffer.
 

Uses of ChannelHandler.Sharable in org.jboss.netty.handler.codec.string
 

Classes in org.jboss.netty.handler.codec.string with annotations of type ChannelHandler.Sharable
 class StringDecoder
          Decodes a received ChannelBuffer into a String.
 class StringEncoder
          Encodes the requested String into a ChannelBuffer.
 

Uses of ChannelHandler.Sharable in org.jboss.netty.handler.execution
 

Classes in org.jboss.netty.handler.execution with annotations of type ChannelHandler.Sharable
 class ExecutionHandler
          Forwards an upstream ChannelEvent to an Executor.
 

Uses of ChannelHandler.Sharable in org.jboss.netty.handler.logging
 

Classes in org.jboss.netty.handler.logging with annotations of type ChannelHandler.Sharable
 class LoggingHandler
          A ChannelHandler that logs all events via InternalLogger.
 

Uses of ChannelHandler.Sharable in org.jboss.netty.handler.timeout
 

Classes in org.jboss.netty.handler.timeout with annotations of type ChannelHandler.Sharable
 class IdleStateHandler
          Triggers an IdleStateEvent when a Channel has not performed read, write, or both operation for a while.
 class ReadTimeoutHandler
          Raises a ReadTimeoutException when no data was read within a certain period of time.
 class WriteTimeoutHandler
          Raises a WriteTimeoutException when no data was written within a certain period of time.
 



Copyright © 2008-2011 JBoss, a division of Red Hat, Inc.. All Rights Reserved.