| |
|
| java.lang.Object java.io.InputStream org.axiondb.io.AxionInputStream
AxionInputStream | abstract public class AxionInputStream extends InputStream (Code) | | AxionInputStream is a generic old InputStream with a little bit of RAF-style seek
ability.
version: $Revision: 1.1 $ $Date: 2005/04/07 00:27:53 $ author: Ahimanikya Satapathy |
Method Summary | |
abstract public long | getPos() | abstract public void | seek(long pos) Seek to the given offset from the start of the file. |
getPos | abstract public long getPos() throws IOException(Code) | | Return the current offset from the start of the file
|
seek | abstract public void seek(long pos) throws IOException(Code) | | Seek to the given offset from the start of the file. The next read() will be from
that location. Can't seek past the end of the file.
|
|
|
|