ConnectionReleaseTrigger, EofSensorWatcher@Deprecated public class BasicManagedEntity extends org.apache.http.entity.HttpEntityWrapper implements ConnectionReleaseTrigger, EofSensorWatcher
connection.
A ManagedClientConnection will
typically not return a managed entity, but you can replace
the unmanaged entity in the response with a managed one.| Modifier and Type | Field | Description |
|---|---|---|
protected boolean |
attemptReuse |
Deprecated.
Whether to keep the connection alive.
|
protected ManagedClientConnection |
managedConn |
Deprecated.
The connection to release.
|
| Constructor | Description |
|---|---|
BasicManagedEntity(org.apache.http.HttpEntity entity,
ManagedClientConnection conn,
boolean reuse) |
Deprecated.
Creates a new managed entity that can release a connection.
|
| Modifier and Type | Method | Description |
|---|---|---|
void |
abortConnection() |
Deprecated.
Releases the connection without the option of keep-alive.
|
void |
consumeContent() |
Deprecated.
(4.1) Use
EntityUtils.consume(HttpEntity) |
boolean |
eofDetected(java.io.InputStream wrapped) |
Deprecated.
Indicates that EOF is detected.
|
java.io.InputStream |
getContent() |
Deprecated.
|
boolean |
isRepeatable() |
Deprecated.
|
void |
releaseConnection() |
Deprecated.
Releases the connection with the option of keep-alive.
|
protected void |
releaseManagedConnection() |
Deprecated.
Releases the connection gracefully.
|
boolean |
streamAbort(java.io.InputStream wrapped) |
Deprecated.
Indicates that the
stream is aborted. |
boolean |
streamClosed(java.io.InputStream wrapped) |
Deprecated.
Indicates that the
stream is closed. |
void |
writeTo(java.io.OutputStream outstream) |
Deprecated.
|
protected ManagedClientConnection managedConn
protected final boolean attemptReuse
public BasicManagedEntity(org.apache.http.HttpEntity entity,
ManagedClientConnection conn,
boolean reuse)
entity - the entity of which to wrap the content.
Note that the argument entity can no longer be used
afterwards, since the content will be taken by this
managed entity.conn - the connection to releasereuse - whether the connection should be re-usedpublic boolean isRepeatable()
isRepeatable in class org.apache.http.entity.HttpEntityWrapperpublic java.io.InputStream getContent()
throws java.io.IOException
getContent in class org.apache.http.entity.HttpEntityWrapperjava.io.IOException@Deprecated
public void consumeContent()
throws java.io.IOException
EntityUtils.consume(HttpEntity)consumeContent in class org.apache.http.entity.HttpEntityWrapperjava.io.IOExceptionpublic void writeTo(java.io.OutputStream outstream)
throws java.io.IOException
writeTo in class org.apache.http.entity.HttpEntityWrapperjava.io.IOExceptionpublic void releaseConnection()
throws java.io.IOException
ConnectionReleaseTriggerabortConnection for a hard release. The
connection may be reused as specified by the duration.releaseConnection in interface ConnectionReleaseTriggerjava.io.IOException - in case of an IO problem. The connection will be released
anyway.public void abortConnection()
throws java.io.IOException
ConnectionReleaseTriggerConnectionReleaseTrigger.releaseConnection() for a graceful release.abortConnection in interface ConnectionReleaseTriggerjava.io.IOException - in case of an IO problem.
The connection will be released anyway.public boolean eofDetected(java.io.InputStream wrapped)
throws java.io.IOException
EofSensorWatchereofDetected in interface EofSensorWatcherwrapped - the underlying stream which has reached EOFtrue if wrapped should be closed,
false if it should be left alonejava.io.IOException - in case of an IO problem, for example if the watcher itself
closes the underlying stream. The caller will leave the
wrapped stream alone, as if false was returned.public boolean streamClosed(java.io.InputStream wrapped)
throws java.io.IOException
EofSensorWatcherstream is closed.
This method will be called only if EOF was not detected
before closing. Otherwise, eofDetected is called.streamClosed in interface EofSensorWatcherwrapped - the underlying stream which has not reached EOFtrue if wrapped should be closed,
false if it should be left alonejava.io.IOException - in case of an IO problem, for example if the watcher itself
closes the underlying stream. The caller will leave the
wrapped stream alone, as if false was returned.public boolean streamAbort(java.io.InputStream wrapped)
throws java.io.IOException
EofSensorWatcherstream is aborted.
This method will be called only if EOF was not detected
before aborting. Otherwise, eofDetected is called.
This method will also be invoked when an input operation causes an IOException to be thrown to make sure the input stream gets shut down.
streamAbort in interface EofSensorWatcherwrapped - the underlying stream which has not reached EOFtrue if wrapped should be closed,
false if it should be left alonejava.io.IOException - in case of an IO problem, for example if the watcher itself
closes the underlying stream. The caller will leave the
wrapped stream alone, as if false was returned.protected void releaseManagedConnection()
throws java.io.IOException
java.io.IOException - in case of an IO problem.
The connection attribute will be nullified anyway.