public class RepeatableInputStream extends InputStream implements InputStreamWrapper
Note: Always use a RepeatableFileInputStream
instead of this class if you are
sourcing data from a file, as the file-based repeatable input stream can be repeated without
any limitations.
This class uses properties obtained through Jets3tProperties
. For more information on
these properties please refer to
JetS3t Configuration
Constructor and Description |
---|
RepeatableInputStream(InputStream inputStream,
int bufferSize)
Creates a repeatable input stream based on another input stream.
|
Modifier and Type | Method and Description |
---|---|
int |
available() |
void |
close() |
InputStream |
getWrappedInputStream() |
void |
mark(int readlimit)
This method can only be used while less data has been read from the input
stream than fits into the buffer.
|
boolean |
markSupported() |
int |
read() |
int |
read(byte[] out,
int outOffset,
int outLength) |
void |
reset()
Resets the input stream to the beginning by pointing the buffer offset to the beginning of the
available data buffer.
|
read, skip
public RepeatableInputStream(InputStream inputStream, int bufferSize)
inputStream
- an input stream to wrap. The data read from the wrapped input stream is buffered as it is
read, up to the buffer limit specified.bufferSize
- the number of bytes buffered by this class.public void reset() throws IOException
reset
in class InputStream
UnrecoverableIOException
- when the available buffer size has been exceeded, in which case the input stream data cannot
be repeated.IOException
public boolean markSupported()
markSupported
in class InputStream
public void mark(int readlimit)
mark
in class InputStream
public int available() throws IOException
available
in class InputStream
IOException
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class InputStream
IOException
public int read(byte[] out, int outOffset, int outLength) throws IOException
read
in class InputStream
IOException
public int read() throws IOException
read
in class InputStream
IOException
public InputStream getWrappedInputStream()
getWrappedInputStream
in interface InputStreamWrapper
Copyright © 2006–2018. All rights reserved.