Uses of Class
org.eclipse.rdf4j.repository.UnknownTransactionStateException
Packages that use UnknownTransactionStateException
Package
Description
The Repository API: the main API for accessing rdf databases and SPARQL endpoints.
Abstract base classes and wrappers for the main Repository API interfaces.
A repository that serves as a proxy client for a remote repository on an RDF4J Server.
Repository implementation for local RDF databases that implement the SAIL SPI.
A
Repository that serves as a SPARQL endpoint client.Helper classes for working with Repositories.
-
Uses of UnknownTransactionStateException in org.eclipse.rdf4j.repository
Methods in org.eclipse.rdf4j.repository that throw UnknownTransactionStateExceptionModifier and TypeMethodDescriptionbooleanRepositoryConnection.isActive()Indicates if a transaction is currently active on the connection. -
Uses of UnknownTransactionStateException in org.eclipse.rdf4j.repository.base
Methods in org.eclipse.rdf4j.repository.base that throw UnknownTransactionStateException -
Uses of UnknownTransactionStateException in org.eclipse.rdf4j.repository.http
Methods in org.eclipse.rdf4j.repository.http that throw UnknownTransactionStateException -
Uses of UnknownTransactionStateException in org.eclipse.rdf4j.repository.sail
Methods in org.eclipse.rdf4j.repository.sail that throw UnknownTransactionStateException -
Uses of UnknownTransactionStateException in org.eclipse.rdf4j.repository.sparql
Methods in org.eclipse.rdf4j.repository.sparql that throw UnknownTransactionStateException -
Uses of UnknownTransactionStateException in org.eclipse.rdf4j.repository.util
Methods in org.eclipse.rdf4j.repository.util that throw UnknownTransactionStateExceptionModifier and TypeMethodDescriptionstatic voidRepositories.consume(Repository repository, Consumer<RepositoryConnection> processFunction) Opens aRepositoryConnectionto the given Repository within a transaction, sends the connection to the givenConsumer, before either rolling back the transaction if it failed, or committing the transaction if it was successful.static voidRepositories.consume(Repository repository, Consumer<RepositoryConnection> processFunction, Consumer<RepositoryException> exceptionHandler) Opens aRepositoryConnectionto the given Repository within a transaction, sends the connection to the givenConsumer, before either rolling back the transaction if it failed, or committing the transaction if it was successful.static voidRepositories.consumeNoTransaction(Repository repository, Consumer<RepositoryConnection> processFunction) Opens aRepositoryConnectionto the given Repository without opening a transaction, sends the connection to the givenConsumer.static voidRepositories.consumeNoTransaction(Repository repository, Consumer<RepositoryConnection> processFunction, Consumer<RepositoryException> exceptionHandler) Opens aRepositoryConnectionto the given Repository without opening a transaction, sends the connection to the givenConsumer.static <T> TRepositories.get(Repository repository, Function<RepositoryConnection, T> processFunction) Opens aRepositoryConnectionto the given Repository within a transaction, sends the connection to the givenFunction, before either rolling back the transaction if it failed, or committing the transaction if it was successful.static <T> TRepositories.get(Repository repository, Function<RepositoryConnection, T> processFunction, Consumer<RepositoryException> exceptionHandler) Opens aRepositoryConnectionto the given Repository within a transaction, sends the connection to the givenFunction, before either rolling back the transaction if it failed, or committing the transaction if it was successful.static <T> TRepositories.getNoTransaction(Repository repository, Function<RepositoryConnection, T> processFunction) Opens aRepositoryConnectionto the given Repository without opening a transaction, sends the connection to the givenFunction.static <T> TRepositories.getNoTransaction(Repository repository, Function<RepositoryConnection, T> processFunction, Consumer<RepositoryException> exceptionHandler) Opens aRepositoryConnectionto the given Repository without opening a transaction, sends the connection to the givenFunction.static <T> TRepositories.graphQuery(Repository repository, String query, Function<GraphQueryResult, T> processFunction) Performs a SPARQL Construct or Describe query on the given Repository within a transaction and passes the results to the givenFunctionwith the result from the function returned by the method.static voidRepositories.graphQuery(Repository repository, String query, RDFHandler handler) Performs a SPARQL Construct or Describe query on the given Repository within a transaction and passes the results to the givenRDFHandler.static <T> TRepositories.graphQueryNoTransaction(Repository repository, String query, Function<GraphQueryResult, T> processFunction) Performs a SPARQL Construct or Describe query on the given Repository without opening a transaction and passes the results to the givenFunctionwith the result from the function returned by the method.static voidRepositories.graphQueryNoTransaction(Repository repository, String query, RDFHandler handler) Performs a SPARQL Construct or Describe query on the given Repository without opening a transaction and passes the results to the givenRDFHandler.static <T> TRepositories.tupleQuery(Repository repository, String query, Function<TupleQueryResult, T> processFunction) Performs a SPARQL Select query on the given Repository within a transaction and passes the results to the givenFunctionwith the result from the function returned by the method.static voidRepositories.tupleQuery(Repository repository, String query, TupleQueryResultHandler handler) Performs a SPARQL Select query on the given Repository within a transaction and passes the results to the givenTupleQueryResultHandler.static <T> TRepositories.tupleQueryNoTransaction(Repository repository, String query, Function<TupleQueryResult, T> processFunction) Performs a SPARQL Select query on the given Repository without opening a transaction and passes the results to the givenFunctionwith the result from the function returned by the method.static voidRepositories.tupleQueryNoTransaction(Repository repository, String query, TupleQueryResultHandler handler) Performs a SPARQL Select query on the given Repository without opening a transaction and passes the results to the givenTupleQueryResultHandler.