org.axiondb.io

Class AxionInputStream

public abstract class AxionInputStream extends InputStream

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 longgetPos()
Return the current offset from the start of the file
abstract voidseek(long pos)
Seek to the given offset from the start of the file.

Method Detail

getPos

public abstract long getPos()
Return the current offset from the start of the file

seek

public abstract void seek(long pos)
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.