@Immutable public class LaxContentLengthStrategy extends java.lang.Object implements ContentLengthStrategy
Content-Length
header values.
This class recognizes "chunked" and "identitiy" transfer-coding only.
Modifier and Type | Field and Description |
---|---|
static LaxContentLengthStrategy |
INSTANCE |
CHUNKED, IDENTITY
Constructor and Description |
---|
LaxContentLengthStrategy()
Creates
LaxContentLengthStrategy instance. |
LaxContentLengthStrategy(int implicitLen)
Creates
LaxContentLengthStrategy instance with the given length used per default
when content length is not explicitly specified in the message. |
Modifier and Type | Method and Description |
---|---|
long |
determineLength(HttpMessage message)
Returns length of the given message in bytes.
|
public static final LaxContentLengthStrategy INSTANCE
public LaxContentLengthStrategy(int implicitLen)
LaxContentLengthStrategy
instance with the given length used per default
when content length is not explicitly specified in the message.implicitLen
- implicit content length.public LaxContentLengthStrategy()
LaxContentLengthStrategy
instance. ContentLengthStrategy.IDENTITY
is used per default when content length is not explicitly specified in the message.public long determineLength(HttpMessage message) throws HttpException
ContentLengthStrategy
ContentLengthStrategy.IDENTITY
if the end of the
message will be delimited by the end of connection, or ContentLengthStrategy.CHUNKED
if the message is chunk codeddetermineLength
in interface ContentLengthStrategy
message
- HTTP messageContentLengthStrategy.IDENTITY
, or ContentLengthStrategy.CHUNKED
HttpException
- in case of HTTP protocol violation