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, isRepeatable
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
consumeContent, getContentEncoding, getContentLength, getContentType, isChunked, isRepeatable
private final java.nio.channels.ReadableByteChannel channel
private final java.nio.ByteBuffer buffer
public NHttpEntityWrapper(HttpEntity httpEntity) throws java.io.IOException
java.io.IOException
public java.io.InputStream getContent() throws java.io.IOException, java.lang.UnsupportedOperationException
UnsupportedOperationException
.getContent
in interface HttpEntity
getContent
in class HttpEntityWrapper
java.io.IOException
- if the stream could not be createdjava.lang.UnsupportedOperationException
- if entity content cannot be represented as InputStream
.HttpEntity.isRepeatable()
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(java.io.OutputStream out) throws java.io.IOException, java.lang.UnsupportedOperationException
UnsupportedOperationException
.writeTo
in interface HttpEntity
writeTo
in class HttpEntityWrapper
out
- the output stream to write entity content tojava.io.IOException
- if an I/O error occursjava.lang.UnsupportedOperationException
public void produceContent(ContentEncoder encoder, IOControl ioctrl) throws java.io.IOException
ProducingNHttpEntity
IOControl
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 ProducingNHttpEntity
encoder
- content encoder.ioctrl
- I/O control of the underlying connection.java.io.IOException
public void finish()
ProducingNHttpEntity
finish
in interface ProducingNHttpEntity