| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.http.conn.BasicEofSensorWatcher
@Deprecated public class BasicEofSensorWatcher
Basic implementation of EofSensorWatcher. The underlying connection
 is released on close or EOF.
| Field Summary | |
|---|---|
| protected  boolean | attemptReuseDeprecated. Whether to keep the connection alive. | 
| protected  ManagedClientConnection | managedConnDeprecated. The connection to auto-release. | 
| Constructor Summary | |
|---|---|
| BasicEofSensorWatcher(ManagedClientConnection conn,
                      boolean reuse)Deprecated. Creates a new watcher for auto-releasing a connection. | |
| Method Summary | |
|---|---|
|  boolean | eofDetected(InputStream wrapped)Deprecated. Indicates that EOF is detected. | 
|  boolean | streamAbort(InputStream wrapped)Deprecated. Indicates that the streamis aborted. | 
|  boolean | streamClosed(InputStream wrapped)Deprecated. Indicates that the streamis closed. | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Field Detail | 
|---|
protected final ManagedClientConnection managedConn
protected final boolean attemptReuse
| Constructor Detail | 
|---|
public BasicEofSensorWatcher(ManagedClientConnection conn,
                             boolean reuse)
conn - the connection to auto-releasereuse - whether the connection should be re-used| Method Detail | 
|---|
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.| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||