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()
Returns a content stream of the entity.
|
Supplier<List<? extends Header>> |
getTrailers()
Returns supplier of message trailers - headers sent after message body.
|
boolean |
isRepeatable()
Tells if the entity is capable of producing its data more than once.
|
boolean |
isStreaming()
Tells 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
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.
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()
Supplier<List<? extends Header>> getTrailers()
null
if trailers are not available.boolean isRepeatable()
boolean 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
otherwisevoid 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 occurs