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

org.aksw.jena_sparql_api.utils.CloseableQueryExecution Maven / Gradle / Ivy

The newest version!
package org.aksw.jena_sparql_api.utils;

import java.io.Closeable;
import java.io.IOException;

import org.apache.jena.query.QueryExecution;

public class CloseableQueryExecution
    implements Closeable
{
    private QueryExecution qe;

    public CloseableQueryExecution(QueryExecution qe) {
        this.qe = qe;
    }

        @Override
    public void close() throws IOException {
        qe.close();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy