public interface HttpEntity extends EntityDetails, Closeable
There are three distinct types of entities in HttpCore,
depending on where their content
originates:
connection
.
Streamed
entities are generally not
repeatable
.
repeatable
.
This distinction is important for connection management with incoming entities. For entities that are created by an application and only sent using the HTTP components framework, the difference between streamed and self-contained is of little importance. In that case, it is suggested to consider non-repeatable entities as streamed, and those that are repeatable (without a huge effort) as self-contained.
Modifier and Type | Method and Description |
---|---|
InputStream |
getContent()
Gets a content stream of the entity.
|
Supplier<List<? extends Header>> |
getTrailers()
Gets supplier of message trailers - headers sent after message body.
|
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.
|
void |
writeTo(OutputStream outStream)
Writes the entity content out to the output stream.
|
getContentEncoding, getContentLength, getContentType, getTrailerNames, isChunked
boolean isRepeatable()
InputStream getContent() throws IOException, UnsupportedOperationException
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.
IOException
- if the stream could not be createdUnsupportedOperationException
- if entity content cannot be represented as InputStream
.isRepeatable()
void writeTo(OutputStream outStream) throws IOException
IMPORTANT: Please note all entity implementations must ensure that all allocated resources are properly deallocated when this method returns.
outStream
- the output stream to write entity content toIOException
- if an I/O error occursboolean isStreaming()
true
. Self-contained entities should return
false
. Wrapping entities should delegate this call
to the wrapped entity.true
if the entity content is streamed,
false
otherwiseCopyright © 2005–2021 The Apache Software Foundation. All rights reserved.