|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.io.InputStream
com.aragost.javahg.internals.OutputChannelInputStream
public class OutputChannelInputStream
An input stream that will make everything written to the output channel for one command available as an input stream.
Reading from this stream will add to the
ByteArrayOutputStream
for the other channels, as blocks for
other channels are detected.
The stream will indicate EOF when the 'r'esult block has been read.
If a 'L' block is read it will also indicate EOF. After a respond to the 'L' block is sent to the server, you can call reopen() and read the rest of the input.
Method Summary | |
---|---|
int |
available()
|
int |
read()
|
int |
read(byte[] b,
int off,
int len)
|
void |
reopen()
Reopen this stream to read pending 'o' blocks. |
Methods inherited from class java.io.InputStream |
---|
close, mark, markSupported, read, reset, skip |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public 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 available() throws IOException
available
in class InputStream
IOException
public void reopen()
The stream is indicating EOF when an 'L' block is encountered. With this method the rest of the rest of the 'o' blocks can be read.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |