Package org.daisy.dotify.common.io
Interface InputStreamMaker
-
- All Known Implementing Classes:
ByteArrayInputStreamMaker
,FileInputStreamMaker
public interface InputStreamMaker
Provides an interface for recreating the same input stream many times.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputStream
newInputStream()
Returns a new input stream for the source.
-
-
-
Method Detail
-
newInputStream
InputStream newInputStream() throws IOException
Returns a new input stream for the source.- Returns:
- a new input stream
- Throws:
IOException
- if an IO-problem occurs
-
-