Class BoundedReader
java.lang.Object
java.io.Reader
org.apache.maven.shared.filtering.BoundedReader
- All Implemented Interfaces:
Closeable,AutoCloseable,Readable
A reader that imposes a limit to the number of bytes that can be read from an underlying reader, simulating eof when
this limit is reached. This stream can typically be used to constrain a client with regard to a readAheadLimit of an
underlying stream, to avoid overrunning this limit and hence lose the opportunity do to reset.
-
Field Summary
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.io.Reader
markSupported, nullReader, read, read, ready, skip, transferTo
-
Constructor Details
-
BoundedReader
- Parameters:
target-ReaderreadAheadLimit- read ahead limit.- Throws:
IOException- in case of a failure.
-
-
Method Details
-
close
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein classReader- Throws:
IOException
-
reset
- Overrides:
resetin classReader- Throws:
IOException
-
mark
- Overrides:
markin classReader- Throws:
IOException
-
read
- Overrides:
readin classReader- Throws:
IOException
-
read
- Specified by:
readin classReader- Throws:
IOException
-