@Contract(threading=IMMUTABLE_CONDITIONAL) public class BasicHttpEntity extends AbstractHttpEntity
InputStream.| Constructor and Description |
|---|
BasicHttpEntity(InputStream content,
ContentType contentType) |
BasicHttpEntity(InputStream content,
ContentType contentType,
boolean chunked) |
BasicHttpEntity(InputStream content,
ContentType contentType,
String contentEncoding) |
BasicHttpEntity(InputStream content,
long length,
ContentType contentType) |
BasicHttpEntity(InputStream content,
long length,
ContentType contentType,
String contentEncoding) |
BasicHttpEntity(InputStream content,
long length,
ContentType contentType,
String contentEncoding,
boolean chunked) |
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
InputStream |
getContent()
Returns a content stream of the entity.
|
long |
getContentLength()
Returns length of the entity, if known.
|
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.
|
getContentEncoding, getContentType, getTrailerNames, getTrailers, isChunked, toString, writeTo, writeTopublic BasicHttpEntity(InputStream content, long length, ContentType contentType, String contentEncoding, boolean chunked)
public BasicHttpEntity(InputStream content, long length, ContentType contentType, String contentEncoding)
public BasicHttpEntity(InputStream content, long length, ContentType contentType)
public BasicHttpEntity(InputStream content, ContentType contentType, String contentEncoding)
public BasicHttpEntity(InputStream content, ContentType contentType)
public BasicHttpEntity(InputStream content, ContentType contentType, boolean chunked)
public final long getContentLength()
EntityDetailspublic final InputStream getContent() throws IllegalStateException
HttpEntityRepeatable 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.
IllegalStateExceptionHttpEntity.isRepeatable()public final boolean isRepeatable()
HttpEntityisRepeatable in interface HttpEntityisRepeatable in class AbstractHttpEntitypublic final boolean isStreaming()
HttpEntitytrue. Self-contained entities should return
false. Wrapping entities should delegate this call
to the wrapped entity.true if the entity content is streamed,
false otherwisepublic final void close()
throws IOException
IOExceptionCopyright © 2005–2020 The Apache Software Foundation. All rights reserved.