ai.preferred.cerebro.index.search.processor.QueryProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cerebro Show documentation
Show all versions of cerebro Show documentation
Your personalized retrieval engine.
The newest version!
package ai.preferred.cerebro.index.search.processor;
import ai.preferred.cerebro.index.request.QueryRequest;
import ai.preferred.cerebro.index.response.QueryResponse;
import ai.preferred.cerebro.index.search.structure.VersatileSearcher;
/**
* An interface to enforce the functionality of any type
* of Processor used to handled queries.
*/
public interface QueryProcessor {
public QueryResponse process(VersatileSearcher searcher, QueryRequest qRequest) throws Exception;
}