Package com.adobe.internal.io
Class ChainedInputStream
- java.lang.Object
-
- java.io.InputStream
-
- com.adobe.internal.io.ChainedInputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
public class ChainedInputStream extends java.io.InputStream
A wrapper stream representing multiple underlying streams as a single stream.
-
-
Constructor Summary
Constructors Constructor Description ChainedInputStream(java.io.InputStream[] streams)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
available()
void
close()
int
read()
-
-
-
Method Detail
-
read
public int read() throws java.io.IOException
- Specified by:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
available
public int available() throws java.io.IOException
- Overrides:
available
in classjava.io.InputStream
- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Overrides:
close
in classjava.io.InputStream
- Throws:
java.io.IOException
-
-