| java.lang.Object java.io.OutputStream org.axiondb.io.AxionOutputStream
AxionOutputStream | abstract public class AxionOutputStream extends OutputStream (Code) | | AxionOutputStream is an OutputStream that can track its position.
version: $Revision: 1.3 $ $Date: 2005/04/14 00:30:02 $ 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.
|
|
|