public class InfiniteCircularInputStream extends java.io.InputStream
InputStream that infinitely repeats provided bytes.
Closing a InfiniteCircularInputStream has no effect. The methods in this class can be called after the stream has been closed without generating an IOException.
| Constructor and Description |
|---|
InfiniteCircularInputStream(byte[] repeatedContent)
Creates a InfiniteCircularStream from the specified array of chars.
|
| Modifier and Type | Method and Description |
|---|---|
int |
read() |
public InfiniteCircularInputStream(byte[] repeatedContent)
repeatedContent - Input buffer to be repeated (not copied)public int read()
read in class java.io.InputStream