|
Build 1.0_r1(from source) | |||||||||
| 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.conn.BasicManagedEntity
public class BasicManagedEntity
An entity that releases a connection.
A ManagedClientConnection will
typically not return a managed entity, but you can replace
the unmanaged entity in the response with a managed one.
| Field Summary | |
|---|---|
protected boolean |
attemptReuse
Whether to keep the connection alive. |
protected ManagedClientConnection |
managedConn
The connection to release. |
| Fields inherited from class org.apache.http.entity.HttpEntityWrapper |
|---|
wrappedEntity |
| Constructor Summary | |
|---|---|
BasicManagedEntity(HttpEntity entity,
ManagedClientConnection conn,
boolean reuse)
Creates a new managed entity that can release a connection. |
|
| Method Summary | |
|---|---|
void |
abortConnection()
Releases the connection without the option of keep-alive. |
void |
consumeContent()
TODO: The name of this method is misnomer. |
boolean |
eofDetected(InputStream wrapped)
Indicates that EOF is detected. |
InputStream |
getContent()
Creates a new InputStream object of the entity. |
boolean |
isRepeatable()
Tells if the entity is capable to produce its data more than once. |
void |
releaseConnection()
Releases the connection with the option of keep-alive. |
protected void |
releaseManagedConnection()
Releases the connection gracefully. |
boolean |
streamAbort(InputStream wrapped)
Indicates that the stream is aborted. |
boolean |
streamClosed(InputStream wrapped)
Indicates that the stream is closed. |
void |
writeTo(OutputStream outstream)
Writes the entity content to the output stream. |
| Methods inherited from class org.apache.http.entity.HttpEntityWrapper |
|---|
getContentEncoding, getContentLength, getContentType, isChunked, isStreaming |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected ManagedClientConnection managedConn
protected final boolean attemptReuse
| Constructor Detail |
|---|
public BasicManagedEntity(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-used| Method Detail |
|---|
public boolean isRepeatable()
HttpEntity
isRepeatable in interface HttpEntityisRepeatable in class HttpEntityWrapper
public InputStream getContent()
throws IOException
HttpEntityrepeatable
will throw an exception if this method is called multiple times.
getContent in interface HttpEntitygetContent in class HttpEntityWrapperIOException - if the stream could not be created
public void consumeContent()
throws IOException
HttpEntityconnection. The entity
needs to be consumed completely in order to re-use the connection
with keep-alive.
consumeContent in interface HttpEntityconsumeContent in class HttpEntityWrapperIOException - if an I/O error occurs.
This indicates that connection keep-alive is not possible.
public void writeTo(OutputStream outstream)
throws IOException
HttpEntity
writeTo in interface HttpEntitywriteTo in class HttpEntityWrapperoutstream - the output stream to write entity content to
IOException - if an I/O error occurs
public void releaseConnection()
throws IOException
ConnectionReleaseTriggerabortConnection for a hard release. The
connection may be reused as specified by the duration.
releaseConnection in interface ConnectionReleaseTriggerIOException - in case of an IO problem. The connection will be released
anyway.
public void abortConnection()
throws IOException
ConnectionReleaseTriggerreleaseConnection for a graceful release.
abortConnection in interface ConnectionReleaseTriggerIOException - in case of an IO problem.
The connection will be released anyway.
public boolean eofDetected(InputStream wrapped)
throws IOException
EofSensorWatcher
eofDetected in interface EofSensorWatcherwrapped - the underlying stream which has reached EOF
true if wrapped should be closed,
false if it should be left alone
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(InputStream wrapped)
throws 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 EOF
true if wrapped should be closed,
false if it should be left alone
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(InputStream wrapped)
throws 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 EOF
true if wrapped should be closed,
false if it should be left alone
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 IOException
IOException - in case of an IO problem.
The connection attribute will be nullified anyway.
|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||