![]() |
Quadcap Embeddable Server |
Inheritance diagram for com.quadcap.io.ConcatInputStream:

Definition at line 54 of file ConcatInputStream.java.
Public Member Functions | |
| ConcatInputStream (InputStream in1, InputStream in2) | |
| Construct a new ConcatInputStream formed by the concatenation of two input streams. | |
| void | addInputStream (InputStream in) |
| Add another input stream to the concatenation. | |
| int | read () throws IOException |
| Reads the next byte of data from this input stream. | |
| int | available () throws IOException |
| Returns the number of bytes that can be read from this input stream without blocking. | |
Package Attributes | |
| Vector | streams = new Vector() |
| int | stream = 0 |
|
||||||||||||
|
Construct a new ConcatInputStream formed by the concatenation of two input streams.
Definition at line 65 of file ConcatInputStream.java. References com.quadcap.io.ConcatInputStream.streams. |
|
|
Add another input stream to the concatenation.
Definition at line 75 of file ConcatInputStream.java. References com.quadcap.io.ConcatInputStream.addInputStream(), and com.quadcap.io.ConcatInputStream.streams. Referenced by com.quadcap.io.ConcatInputStream.addInputStream(). |
|
|
Returns the number of bytes that can be read from this input stream without blocking.
The available method of
Definition at line 112 of file ConcatInputStream.java. References com.quadcap.io.ConcatInputStream.stream, and com.quadcap.io.ConcatInputStream.streams. |
|
|
Reads the next byte of data from this input stream.
The value byte is returned as an
Definition at line 93 of file ConcatInputStream.java. References com.quadcap.io.ConcatInputStream.stream, and com.quadcap.io.ConcatInputStream.streams. |
|
|
Definition at line 56 of file ConcatInputStream.java. Referenced by com.quadcap.io.ConcatInputStream.available(), and com.quadcap.io.ConcatInputStream.read(). |
|
|
Definition at line 55 of file ConcatInputStream.java. Referenced by com.quadcap.io.ConcatInputStream.addInputStream(), com.quadcap.io.ConcatInputStream.available(), com.quadcap.io.ConcatInputStream.ConcatInputStream(), and com.quadcap.io.ConcatInputStream.read(). |