Uses of Class
org.jboss.netty.handler.codec.frame.FrameDecoder

Packages that use FrameDecoder
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.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.ssl SSL · TLS implementation based on SSLEngine 
 

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

Subclasses of FrameDecoder in org.jboss.netty.handler.codec.frame
 class DelimiterBasedFrameDecoder
          A decoder that splits the received ChannelBuffers by one or more delimiters.
 class FixedLengthFrameDecoder
          A decoder that splits the received ChannelBuffers by the fixed number of bytes.
 class LengthFieldBasedFrameDecoder
          A decoder that splits the received ChannelBuffers dynamically by the value of the length field in the message.
 

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

Subclasses of FrameDecoder in org.jboss.netty.handler.codec.protobuf
 class ProtobufVarint32FrameDecoder
          A decoder that splits the received ChannelBuffers dynamically by the value of the Google Protocol Buffers Base 128 Varints integer length field in the message.
 

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

Subclasses of FrameDecoder in org.jboss.netty.handler.codec.serialization
 class ObjectDecoder
          A decoder which deserializes the received ChannelBuffers into Java objects.
 

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

Subclasses of FrameDecoder in org.jboss.netty.handler.ssl
 class SslHandler
          Adds SSL · TLS and StartTLS support to a Channel.
 



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