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

ai.preferred.cerebro.index.search.processor.QueryProcessor Maven / Gradle / Ivy

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy