public class BufferedHttpEntity extends HttpEntityWrapper
wrappedEntity
Constructor and Description |
---|
BufferedHttpEntity(HttpEntity entity)
Creates a new buffered entity wrapper.
|
Modifier and Type | Method and Description |
---|---|
InputStream |
getContent()
Returns a content stream of the entity.
|
long |
getContentLength()
Tells the length of the content, if known.
|
boolean |
isChunked()
Tells that this entity does not have to be chunked.
|
boolean |
isRepeatable()
Tells that this entity is repeatable.
|
boolean |
isStreaming()
Tells whether this entity depends on an underlying stream.
|
void |
writeTo(OutputStream outStream)
Writes the entity content out to the output stream.
|
consumeContent, getContentEncoding, getContentType
public BufferedHttpEntity(HttpEntity entity) throws IOException
entity
- the entity to wrap, not nullIllegalArgumentException
- if wrapped is nullIOException
public long getContentLength()
HttpEntity
getContentLength
in interface HttpEntity
getContentLength
in class HttpEntityWrapper
Long.MAX_VALUE
,
a negative number is returned.public InputStream getContent() throws IOException
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.
IMPORTANT: Please note all entity implementations must ensure that
all allocated resources are properly deallocated after
the InputStream.close()
method is invoked.
getContent
in interface HttpEntity
getContent
in class HttpEntityWrapper
IOException
- if the stream could not be createdHttpEntity.isRepeatable()
public boolean isChunked()
isChunked
in interface HttpEntity
isChunked
in class HttpEntityWrapper
false
public boolean isRepeatable()
isRepeatable
in interface HttpEntity
isRepeatable
in class HttpEntityWrapper
true
public void writeTo(OutputStream outStream) throws IOException
HttpEntity
IMPORTANT: Please note all entity implementations must ensure that all allocated resources are properly deallocated when this method returns.
writeTo
in interface HttpEntity
writeTo
in class HttpEntityWrapper
outStream
- the output stream to write entity content toIOException
- if an I/O error occurspublic boolean isStreaming()
HttpEntity
true
. Self-contained entities should return
false
. Wrapping entities should delegate this call
to the wrapped entity.isStreaming
in interface HttpEntity
isStreaming
in class HttpEntityWrapper
true
if the entity content is streamed,
false
otherwiseCopyright © 2005–2022 The Apache Software Foundation. All rights reserved.