Class DefaultHttpChunk
java.lang.Object
org.jboss.netty.handler.codec.http.DefaultHttpChunk
- All Implemented Interfaces:
HttpChunk
-
Field Summary
FieldsFields inherited from interface HttpChunk
LAST_CHUNK -
Constructor Summary
ConstructorsConstructorDescriptionDefaultHttpChunk(ChannelBuffer content) Creates a new instance with the specified chunk content. -
Method Summary
Modifier and TypeMethodDescriptionReturns the content of this chunk.booleanisLast()Returnstrueif and only if this chunk is the 'end of content' marker.voidsetContent(ChannelBuffer content) Sets the content of this chunk.
-
Field Details
-
-
last
private boolean last
-
-
Constructor Details
-
DefaultHttpChunk
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
Description copied from interface:HttpChunkReturns the content of this chunk. If this is the 'end of content' marker,ChannelBuffers.EMPTY_BUFFERwill be returned.- Specified by:
getContentin interfaceHttpChunk
-
setContent
Description copied from interface:HttpChunkSets the content of this chunk. If an empty buffer is specified, this chunk becomes the 'end of content' marker.- Specified by:
setContentin interfaceHttpChunk
-
isLast
-