public final class HttpMessageDecoderResult extends DecoderResult
DecoderResult
for HttpMessage
s 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.
SIGNAL_SUCCESS, SIGNAL_UNFINISHED, SUCCESS, UNFINISHED
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).
|
cause, failure, isFailure, isFinished, isSuccess, toString
public int initialLineLength()
maxInitialLineLength
.public int headerSize()
maxHeaderSize
.public int totalSize()
Copyright © 2008–2024 The Netty Project. All rights reserved.