proj.zoie.impl.indexing.AbstractReaderCache Maven / Gradle / Ivy
package proj.zoie.impl.indexing;
import java.util.List;
import org.apache.lucene.index.IndexReader;
import proj.zoie.api.ZoieException;
import proj.zoie.api.ZoieIndexReader;
public abstract class AbstractReaderCache
{
public abstract List> getIndexReaders();
public abstract void returnIndexReaders(List> readers);
public abstract void refreshCache(long timeout) throws ZoieException;
public abstract void start();
public abstract void shutdown();
public abstract void setFreshness(long freshness);
public abstract long getFreshness();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy