A byte source that supports positioned read and length.
| 22 | |
| 23 | /** A byte source that supports positioned read and length. */ |
| 24 | public interface Input extends Closeable { |
| 25 | /** Return the total length of the input. */ |
| 26 | long length() throws IOException; |
| 27 | |
| 28 | /** Positioned read. */ |
| 29 | int read(long position, byte[] b, int start, int len) throws IOException; |
| 30 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…