org.apache.hadoop.fs
Interface Seekable

All Known Implementing Classes:
FSDataInputStream, FSInputStream

public interface Seekable

Stream that permits seeking.


Method Summary
 void seek(long pos)
          Seek to the given offset from the start of the file.
 

Method Detail

seek

void seek(long pos)
          throws IOException
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.

Throws:
IOException


Copyright © 2006 The Apache Software Foundation