|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.http.entity.HttpEntityWrapper
org.apache.http.nio.entity.BufferingNHttpEntity
BasicAsyncRequestProducer
or BasicAsyncResponseProducer
@Deprecated public class BufferingNHttpEntity
A ConsumingNHttpEntity
that consumes content into a buffer. The
content can be retrieved as an InputStream via
HttpEntity.getContent()
, or written to an output stream via
HttpEntity.writeTo(OutputStream)
.
Field Summary |
---|
Fields inherited from class org.apache.http.entity.HttpEntityWrapper |
---|
wrappedEntity |
Constructor Summary | |
---|---|
BufferingNHttpEntity(HttpEntity httpEntity,
ByteBufferAllocator allocator)
Deprecated. |
Method Summary | |
---|---|
void |
consumeContent(ContentDecoder decoder,
IOControl ioControl)
Deprecated. Notification that content is available to be read from the decoder. |
void |
finish()
Deprecated. Notification that any resources allocated for reading can be released. |
InputStream |
getContent()
Deprecated. Obtains entity's content as InputStream . |
boolean |
isRepeatable()
Deprecated. Tells if the entity is capable of producing its data more than once. |
boolean |
isStreaming()
Deprecated. Tells whether this entity depends on an underlying stream. |
void |
writeTo(OutputStream outStream)
Deprecated. Writes the entity content out to the output stream. |
Methods inherited from class org.apache.http.entity.HttpEntityWrapper |
---|
consumeContent, getContentEncoding, getContentLength, getContentType, isChunked |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.apache.http.HttpEntity |
---|
consumeContent, getContentEncoding, getContentLength, getContentType, isChunked |
Constructor Detail |
---|
public BufferingNHttpEntity(HttpEntity httpEntity, ByteBufferAllocator allocator)
Method Detail |
---|
public void consumeContent(ContentDecoder decoder, IOControl ioControl) throws IOException
ConsumingNHttpEntity
IOControl
instance passed as a parameter to the method can be
used to suspend input events if the entity is temporarily unable to
allocate more storage to accommodate all incoming content.
consumeContent
in interface ConsumingNHttpEntity
decoder
- content decoder.ioControl
- I/O control of the underlying connection.
IOException
public void finish()
ConsumingNHttpEntity
finish
in interface ConsumingNHttpEntity
public InputStream getContent() throws IOException
InputStream
.
getContent
in interface HttpEntity
getContent
in class HttpEntityWrapper
IllegalStateException
- if content of the entity has not been
fully received or has already been consumed.
IOException
- if the stream could not be createdHttpEntity.isRepeatable()
public boolean isRepeatable()
HttpEntity
isRepeatable
in interface HttpEntity
isRepeatable
in class HttpEntityWrapper
public 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
otherwisepublic 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 to
IOException
- if an I/O error occurs
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |