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

proj.zoie.impl.indexing.AbstractReaderCache Maven / Gradle / Ivy

There is a newer version: 3.3.0
Show newest version
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