EntityAsyncContentProducer@Deprecated public class NHttpEntityWrapper extends HttpEntityWrapper implements ProducingNHttpEntity
ProducingNHttpEntity compatibility adaptor for blocking HTTP
entities.| Modifier and Type | Field and Description |
|---|---|
private java.nio.ByteBuffer |
buffer
Deprecated.
|
private java.nio.channels.ReadableByteChannel |
channel
Deprecated.
|
wrappedEntity| Constructor and Description |
|---|
NHttpEntityWrapper(HttpEntity httpEntity)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
void |
finish()
Deprecated.
Notification that any resources allocated for writing can be released.
|
java.io.InputStream |
getContent()
Deprecated.
This method throws
UnsupportedOperationException. |
boolean |
isStreaming()
Deprecated.
Tells whether this entity depends on an underlying stream.
|
void |
produceContent(ContentEncoder encoder,
IOControl ioctrl)
Deprecated.
Notification that content should be written to the encoder.
|
void |
writeTo(java.io.OutputStream out)
Deprecated.
This method throws
UnsupportedOperationException. |
consumeContent, getContentEncoding, getContentLength, getContentType, isChunked, isRepeatableclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitconsumeContent, getContentEncoding, getContentLength, getContentType, isChunked, isRepeatableprivate final java.nio.channels.ReadableByteChannel channel
private final java.nio.ByteBuffer buffer
public NHttpEntityWrapper(HttpEntity httpEntity) throws java.io.IOException
java.io.IOExceptionpublic java.io.InputStream getContent()
throws java.io.IOException,
java.lang.UnsupportedOperationException
UnsupportedOperationException.getContent in interface HttpEntitygetContent in class HttpEntityWrapperjava.io.IOException - if the stream could not be createdjava.lang.UnsupportedOperationException - if entity content cannot be represented as InputStream.HttpEntity.isRepeatable()public boolean isStreaming()
HttpEntitytrue. Self-contained entities should return
false. Wrapping entities should delegate this call
to the wrapped entity.isStreaming in interface HttpEntityisStreaming in class HttpEntityWrappertrue if the entity content is streamed,
false otherwisepublic void writeTo(java.io.OutputStream out)
throws java.io.IOException,
java.lang.UnsupportedOperationException
UnsupportedOperationException.writeTo in interface HttpEntitywriteTo in class HttpEntityWrapperout - the output stream to write entity content tojava.io.IOException - if an I/O error occursjava.lang.UnsupportedOperationExceptionpublic void produceContent(ContentEncoder encoder, IOControl ioctrl) throws java.io.IOException
ProducingNHttpEntityIOControl instance passed as a parameter to the method can be
used to suspend output events if the entity is temporarily unable to
produce more content.
When all content is finished, this MUST call ContentEncoder.complete().
Failure to do so could result in the entity never being written.
produceContent in interface ProducingNHttpEntityencoder - content encoder.ioctrl - I/O control of the underlying connection.java.io.IOExceptionpublic void finish()
ProducingNHttpEntityfinish in interface ProducingNHttpEntity