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

it.unibz.inf.ontop.answering.OntopQueryEngine Maven / Gradle / Ivy

The newest version!
package it.unibz.inf.ontop.answering;


import it.unibz.inf.ontop.answering.reformulation.QueryReformulator;
import it.unibz.inf.ontop.exception.OntopConnectionException;
import it.unibz.inf.ontop.answering.connection.OntopConnection;

public interface OntopQueryEngine extends AutoCloseable {

    /**
     * Initialization method
     */
    boolean connect() throws OntopConnectionException;

    void close() throws OntopConnectionException;

    /**
     * Gets a OntopConnection usually coming from a connection pool.
     */
    OntopConnection getConnection() throws OntopConnectionException;

    /**
     * Not for regular usage
     */
    QueryReformulator getQueryReformulator();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy