All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.archive.util.binsearch.SeekableLineReaderFactory Maven / Gradle / Ivy

There is a newer version: 1.1.9
Show newest version
package org.archive.util.binsearch;

import java.io.IOException;

public interface SeekableLineReaderFactory {
	public final static int BINSEARCH_BLOCK_SIZE = 8192;
	public SeekableLineReader get() throws IOException;
    public void close() throws IOException;
	public long getModTime();
	public void reload() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy