com.indeed.util.io.Seekable Maven / Gradle / Ivy
The newest version!
package com.indeed.util.io;
import java.io.IOException;
/** @author jplaisance */
public interface Seekable extends Positioned {
public void seek(long position) throws IOException;
public long length() throws IOException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy