com.s24.search.solr.analysis.SearcherAware Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of solr-jdbc Show documentation
Show all versions of solr-jdbc Show documentation
A simple Solr JDBC connection holder that can be injected by JNDI.
The newest version!
package com.s24.search.solr.analysis;
import java.io.IOException;
import org.apache.solr.search.SolrIndexSearcher;
/**
* Interface for event notification, when a new searcher has been created.
*/
public interface SearcherAware {
/**
* Notification that a new searcher has been created.
*
* @param searcher
* The new searcher.
* @throws IOException
* In case of any problems.
*/
void inform(SolrIndexSearcher searcher) throws IOException;
}