public class ConfigStream extends InputStream
InputStream
for the
ConfigRecognizer
API. The purpose of this class is to make
the provided InputStream
resetable so that multiple
ConfigRecognizer
implementations can iterate over the stream.
There are even basic InputStream
implementations that don't
support InputStream.reset()
such as BufferedInputStream
.
If calling reset()
on the provided implementation fails with
an exception, this class reads the stream into a byte[]
and
delegates all InputStream
method calls to a
ByteArrayInputStream
created with this byte[]
. To
prevent OOM issues, the size of this byte[]
is limited to 4096
bytes. This limit can be configured in the constructor.ConfigRecognizer
Constructor and Description |
---|
ConfigStream(InputStream configStream) |
ConfigStream(InputStream configStream,
int readLimit) |
Modifier and Type | Method and Description |
---|---|
int |
available() |
void |
close() |
void |
mark(int readlimit) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] b) |
int |
read(byte[] b,
int off,
int len) |
void |
reset() |
long |
skip(long n) |
public ConfigStream(InputStream configStream) throws IOException
IOException
public ConfigStream(InputStream configStream, int readLimit) throws IOException
IOException
public int read() throws IOException
read
in class InputStream
IOException
public int read(byte[] b) throws IOException
read
in class InputStream
IOException
public int read(byte[] b, int off, int len) throws IOException
read
in class InputStream
IOException
public long skip(long n) throws IOException
skip
in class InputStream
IOException
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 void mark(int readlimit)
mark
in class InputStream
public void reset() throws IOException
reset
in class InputStream
IOException
public boolean markSupported()
markSupported
in class InputStream
Copyright © 2023 Hazelcast, Inc.. All rights reserved.