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 | Description |
|---|---|
InfiniteCircularInputStream(byte[] repeatedContent) |
Creates a InfiniteCircularStream from the specified array of chars.
|
| Modifier and Type | Method | Description |
|---|---|---|
int |
read() |
public InfiniteCircularInputStream(byte[] repeatedContent)
repeatedContent - Input buffer to be repeated (not copied)public int read()
read in class java.io.InputStream