org.jboss.netty.handler.codec.http
Class HttpResponseDecoder
java.lang.Object
org.jboss.netty.channel.SimpleChannelUpstreamHandler
org.jboss.netty.handler.codec.replay.ReplayingDecoder<HttpMessageDecoder.State>
org.jboss.netty.handler.codec.http.HttpMessageDecoder
org.jboss.netty.handler.codec.http.HttpResponseDecoder
- All Implemented Interfaces:
- ChannelHandler, ChannelUpstreamHandler
public class HttpResponseDecoder
- extends HttpMessageDecoder
Decodes ChannelBuffers into HttpResponses and
HttpChunks.
Parameters that prevents excessive memory consumption
| Name | Meaning |
maxInitialLineLength |
The maximum length of the initial line (e.g. "HTTP/1.0 200 OK")
If the length of the initial line exceeds this value, a
TooLongFrameException will be raised. |
maxHeaderSize |
The maximum length of all headers. If the sum of the length of each
header exceeds this value, a TooLongFrameException will be raised. |
maxChunkSize |
The maximum length of the content or each chunk. If the content length
exceeds this value, the transfer encoding of the decoded response will be
converted to 'chunked' and the content will be split into multiple
HttpChunks. If the transfer encoding of the HTTP response is
'chunked' already, each chunk will be split into smaller chunks if the
length of the chunk exceeds this value. If you prefer not to handle
HttpChunks in your handler, insert HttpChunkAggregator
after this decoder in the ChannelPipeline. |
- Version:
- $Rev: 1685 $, $Date: 2009-08-28 16:15:49 +0900 (금, 28 8 2009) $
- Author:
- The Netty Project (netty-dev@lists.jboss.org), Andy Taylor (andy.taylor@jboss.org), Trustin Lee (tlee@redhat.com)
|
Constructor Summary |
HttpResponseDecoder()
Creates a new instance with the default
maxInitialLineLength (4096}, maxHeaderSize (4096), and
maxChunkSize (4096). |
HttpResponseDecoder(int maxInitialLineLength,
int maxHeaderSize,
int maxChunkSize)
Creates a new instance with the specified parameters. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
HttpResponseDecoder
public HttpResponseDecoder()
- Creates a new instance with the default
maxInitialLineLength (4096}, maxHeaderSize (4096), and
maxChunkSize (4096).
HttpResponseDecoder
public HttpResponseDecoder(int maxInitialLineLength,
int maxHeaderSize,
int maxChunkSize)
- Creates a new instance with the specified parameters.
createMessage
protected HttpMessage createMessage(String[] initialLine)
- Specified by:
createMessage in class HttpMessageDecoder
isDecodingRequest
protected boolean isDecodingRequest()
- Specified by:
isDecodingRequest in class HttpMessageDecoder
Copyright © 2008-2009 JBoss, by Red Hat. All Rights Reserved.