java.lang.Object | |
↳ | org.apache.http.conn.BasicEofSensorWatcher |
Basic implementation of EofSensorWatcher. The underlying connection is released on close or EOF.
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
attemptReuse | Whether to keep the connection alive. | ||||||||||
managedConn | The connection to auto-release. |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new watcher for auto-releasing a connection.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Indicates that EOF is detected.
| |||||||||||
Indicates that the stream is aborted.
| |||||||||||
Indicates that the stream is closed.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class java.lang.Object
| |||||||||||
From interface org.apache.http.conn.EofSensorWatcher
|
Whether to keep the connection alive.
The connection to auto-release.
Creates a new watcher for auto-releasing a connection.
conn | the connection to auto-release |
---|---|
reuse | whether the connection should be re-used |
Indicates that EOF is detected.
wrapped | the underlying stream which has reached EOF |
---|
true
if wrapped
should be closed,
false
if it should be left aloneIOException |
---|
Indicates that the stream 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.wrapped | the underlying stream which has not reached EOF |
---|
true
if wrapped
should be closed,
false
if it should be left aloneIOException |
---|
Indicates that the stream is closed. This method will be called only if EOF was not detected before closing. Otherwise, eofDetected is called.
wrapped | the underlying stream which has not reached EOF |
---|
true
if wrapped
should be closed,
false
if it should be left aloneIOException |
---|