No examples for this method.
Frequently called with: [Clear]
-1
| 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
|
|||||||||||
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 alone| IOException |
|---|
Indicates that the stream is aborted. This method will be called only if EOF was not detected before aborting. 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 alone| IOException |
|---|
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 alone| IOException |
|---|