Class DefaultHttpChunk

java.lang.Object
org.jboss.netty.handler.codec.http.DefaultHttpChunk
All Implemented Interfaces:
HttpChunk

public class DefaultHttpChunk extends Object implements HttpChunk
The default HttpChunk implementation.
  • Field Details

    • content

      private ChannelBuffer content
    • last

      private boolean last
  • Constructor Details

    • DefaultHttpChunk

      public DefaultHttpChunk(ChannelBuffer content)
      Creates a new instance with the specified chunk content. If an empty buffer is specified, this chunk becomes the 'end of content' marker.
  • Method Details

    • getContent

      public ChannelBuffer getContent()
      Description copied from interface: HttpChunk
      Returns the content of this chunk. If this is the 'end of content' marker, ChannelBuffers.EMPTY_BUFFER will be returned.
      Specified by:
      getContent in interface HttpChunk
    • setContent

      public void setContent(ChannelBuffer content)
      Description copied from interface: HttpChunk
      Sets the content of this chunk. If an empty buffer is specified, this chunk becomes the 'end of content' marker.
      Specified by:
      setContent in interface HttpChunk
    • isLast

      public boolean isLast()
      Description copied from interface: HttpChunk
      Returns true if and only if this chunk is the 'end of content' marker.
      Specified by:
      isLast in interface HttpChunk