Package mdbtools.publicapi
Interface RandomAccess
-
- All Known Implementing Classes:
File
,MemoryRandomAccess
public interface RandomAccess
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
long
length()
long
read(byte[] ba, int offset, int length)
void
seek(long l)
-
-
-
Method Detail
-
close
void close() throws IOException
- Throws:
IOException
-
length
long length() throws IOException
- Throws:
IOException
-
seek
void seek(long l) throws IOException
- Throws:
IOException
-
read
long read(byte[] ba, int offset, int length) throws IOException
- Throws:
IOException
-
-