@Contract(threading=IMMUTABLE_CONDITIONAL) public class BasicHttpEntity extends AbstractHttpEntity
InputStream
.
This class contains immutable attributes
but subclasses may contain
additional immutable or mutable attributes.
ThreadingBehavior.IMMUTABLE_CONDITIONAL
Constructor and Description |
---|
BasicHttpEntity(InputStream content,
ContentType contentType)
Constructs a new instance with the given attributes kept as immutable.
|
BasicHttpEntity(InputStream content,
ContentType contentType,
boolean chunked)
Constructs a new instance with the given attributes kept as immutable.
|
BasicHttpEntity(InputStream content,
ContentType contentType,
String contentEncoding)
Constructs a new instance with the given attributes kept as immutable.
|
BasicHttpEntity(InputStream content,
long contentLength,
ContentType contentType)
Constructs a new instance with the given attributes kept as immutable.
|
BasicHttpEntity(InputStream content,
long contentLength,
ContentType contentType,
String contentEncoding)
Constructs a new instance with the given attributes kept as immutable.
|
BasicHttpEntity(InputStream content,
long contentLength,
ContentType contentType,
String contentEncoding,
boolean chunked)
Constructs a new instance with the given attributes kept as immutable.
|
Modifier and Type | Method and Description |
---|---|
void |
close() |
InputStream |
getContent()
Gets a content stream of the entity.
|
long |
getContentLength()
Gets length of this entity, if known.
|
boolean |
isRepeatable()
Tests if the entity is capable of producing its data more than once.
|
boolean |
isStreaming()
Tests whether this entity depends on an underlying stream.
|
getContentEncoding, getContentType, getTrailerNames, getTrailers, isChunked, toString, writeTo, writeTo
public BasicHttpEntity(InputStream content, long contentLength, ContentType contentType, String contentEncoding, boolean chunked)
content
- The message body contents as an InputStream.contentLength
- The value for the Content-Length
header for the size of the message body, in bytes.contentType
- The content-type, may be null.contentEncoding
- The content encoding string, may be null.chunked
- Whether this entity should be chunked.public BasicHttpEntity(InputStream content, long contentLength, ContentType contentType, String contentEncoding)
The new instance:
content
- The message body contents as an InputStream.contentLength
- The value for the Content-Length
header for the size of the message body, in bytes.contentType
- The content-type, may be null.contentEncoding
- The content encoding string, may be null.public BasicHttpEntity(InputStream content, long contentLength, ContentType contentType)
The new instance:
content
- The message body contents as an InputStream.contentLength
- The value for the Content-Length
header for the size of the message body, in bytes.contentType
- The content-type, may be null.public BasicHttpEntity(InputStream content, ContentType contentType, String contentEncoding)
The new instance:
content
- The message body contents as an InputStream.contentType
- The content-type, may be null.contentEncoding
- The content encoding string, may be null.public BasicHttpEntity(InputStream content, ContentType contentType)
The new instance:
content
- The message body contents as an InputStream.contentType
- The content-type, may be null.public BasicHttpEntity(InputStream content, ContentType contentType, boolean chunked)
The new instance:
content
- The message body contents as an InputStream.contentType
- The content-type, may be null.chunked
- Whether this entity should be chunked.public final long getContentLength()
EntityDetails
0
.public final InputStream getContent() throws IllegalStateException
HttpEntity
Repeatable
entities are expected
to create a new instance of InputStream
for each invocation
of this method and therefore can be consumed multiple times.
Entities that are not repeatable
are expected
to return the same InputStream
instance and therefore
may not be consumed more than once.
If this entity belongs to an incoming HTTP message, calling
InputStream.close()
on the returned InputStream
will
try to consume the complete entity content to keep the connection
alive. In cases where this is undesired, e.g. when only a small part
of the content is relevant and consuming the complete entity content
would be too inefficient, only the HTTP message from which
this entity was obtained should be closed (if supported).
IMPORTANT: Please note all entity implementations must ensure that
all allocated resources are properly deallocated after
the InputStream.close()
method is invoked.
IllegalStateException
HttpEntity.isRepeatable()
public final boolean isRepeatable()
This implementation always returns false
.
This implementation always returns false
.
isRepeatable
in interface HttpEntity
isRepeatable
in class AbstractHttpEntity
public final boolean isStreaming()
true
. Self-contained entities should return
false
. Wrapping entities should delegate this call
to the wrapped entity.
This implementation always returns true
.
true
if the entity content is streamed,
false
otherwisepublic final void close() throws IOException
IOException
Copyright © 2005–2021 The Apache Software Foundation. All rights reserved.