public class GzipCompressingEntity extends HttpEntityWrapper
writing
.Constructor and Description |
---|
GzipCompressingEntity(HttpEntity entity) |
Modifier and Type | Method and Description |
---|---|
InputStream |
getContent()
Returns a content stream of the entity.
|
String |
getContentEncoding()
Returns content encoding of the entity, if known.
|
long |
getContentLength()
Returns length of the entity, if known.
|
boolean |
isChunked()
Returns chunked transfer hint for this entity.
|
void |
writeTo(OutputStream outStream)
Writes the entity content out to the output stream.
|
close, getContentType, getTrailerNames, getTrailers, isRepeatable, isStreaming, toString
public GzipCompressingEntity(HttpEntity entity)
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 String getContentEncoding()
EntityDetails
getContentEncoding
in interface EntityDetails
getContentEncoding
in class HttpEntityWrapper
public long getContentLength()
EntityDetails
getContentLength
in interface EntityDetails
getContentLength
in class HttpEntityWrapper
public boolean isChunked()
EntityDetails
The behavior of wrapping entities is implementation dependent, but should respect the primary purpose.
isChunked
in interface EntityDetails
isChunked
in class HttpEntityWrapper
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 occurs