public final class HttpMessageDecoderResult
extends io.netty.handler.codec.DecoderResult
DecoderResult for HttpMessages as produced by an HttpObjectDecoder.
Please note that there is no guarantee that a HttpObjectDecoder will produce a HttpMessageDecoderResult. It may simply produce a regular DecoderResult. This result is intended for
successful HttpMessage decoder results.
| Modifier and Type | Method and Description |
|---|---|
int |
headerSize()
The decoded header size (in bytes), as controlled by
maxHeaderSize. |
int |
initialLineLength()
The decoded initial line length (in bytes), as controlled by
maxInitialLineLength. |
int |
totalSize()
The decoded initial line length plus the decoded header size (in bytes).
|
public int initialLineLength()
maxInitialLineLength.public int headerSize()
maxHeaderSize.public int totalSize()
Copyright © 2008–2025 The Netty Project. All rights reserved.