public class InfiniteCircularInputStream extends 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() |
available, close, mark, markSupported, read, read, reset, skippublic InfiniteCircularInputStream(byte[] repeatedContent)
repeatedContent - Input buffer to be repeated (not copied)public int read()
read in class InputStreamCopyright © 2002–2020 The Apache Software Foundation. All rights reserved.