|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.io.InputStream org.apache.http.conn.EofSensorInputStream
public class EofSensorInputStream
A stream wrapper that triggers actions on close()
and EOF.
Primarily used to auto-release an underlying managed connection when the response
body is consumed or no longer needed.
EofSensorWatcher
Field Summary | |
---|---|
protected InputStream |
wrappedStream
The wrapped input stream, while accessible. |
Constructor Summary | |
---|---|
EofSensorInputStream(InputStream in,
EofSensorWatcher watcher)
Creates a new EOF sensor. |
Method Summary | |
---|---|
void |
abortConnection()
Aborts this stream. |
int |
available()
|
protected void |
checkAbort()
Detects stream abort and notifies the watcher. |
protected void |
checkClose()
Detects stream close and notifies the watcher. |
protected void |
checkEOF(int eof)
Detects EOF and notifies the watcher. |
void |
close()
|
protected boolean |
isReadAllowed()
Checks whether the underlying stream can be read from. |
int |
read()
|
int |
read(byte[] b)
|
int |
read(byte[] b,
int off,
int len)
|
void |
releaseConnection()
Same as close() . |
Methods inherited from class java.io.InputStream |
---|
mark, markSupported, reset, skip |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected InputStream wrappedStream
null
when the wrapped stream
becomes inaccessible.
Constructor Detail |
---|
public EofSensorInputStream(InputStream in, EofSensorWatcher watcher)
close
is called.
Otherwise, the watcher decides whether the underlying stream
should be closed before detaching from it.
in
- the wrapped streamwatcher
- the watcher for events, or null
for
auto-close behavior without notificationMethod Detail |
---|
protected boolean isReadAllowed() throws IOException
true
if the underlying stream is accessible,
false
if this stream is in EOF mode and
detached from the underlying stream
IOException
- if this stream is already closedpublic int read() throws IOException
read
in class InputStream
IOException
public int read(byte[] b, int off, int len) throws IOException
read
in class InputStream
IOException
public int read(byte[] b) throws IOException
read
in class InputStream
IOException
public int available() throws IOException
available
in class InputStream
IOException
public void close() throws IOException
close
in interface Closeable
close
in class InputStream
IOException
protected void checkEOF(int eof) throws IOException
isReadAllowed
to
check that condition.
If EOF is detected, the watcher will be notified and this stream is detached from the underlying stream. This prevents multiple notifications from this stream.
eof
- the result of the calling read operation.
A negative value indicates that EOF is reached.
IOException
- in case of an IO problem on closing the underlying streamprotected void checkClose() throws IOException
close
.
The watcher will only be notified if this stream is closed
for the first time and before EOF has been detected.
This stream will be detached from the underlying stream to prevent
multiple notifications to the watcher.
IOException
- in case of an IO problem on closing the underlying streamprotected void checkAbort() throws IOException
abortConnection
.
The watcher will only be notified if this stream is aborted
for the first time and before EOF has been detected or the
stream has been closed
gracefully.
This stream will be detached from the underlying stream to prevent
multiple notifications to the watcher.
IOException
- in case of an IO problem on closing the underlying streampublic void releaseConnection() throws IOException
close()
.
releaseConnection
in interface ConnectionReleaseTrigger
IOException
- in case of an IO problem. The connection will be released
anyway.public void abortConnection() throws IOException
close()
which prevents
re-use of the underlying connection, if any. Calling this method
indicates that there should be no attempt to read until the end of
the stream.
abortConnection
in interface ConnectionReleaseTrigger
IOException
- in case of an IO problem.
The connection will be released anyway.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |