org.neo4j.graphdb.GraphDatabaseService Maven / Gradle / Ivy
Show all versions of neo4j-graphdb-api Show documentation
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [https://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.neo4j.graphdb;
import java.time.Duration;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import org.neo4j.annotations.api.PublicApi;
/**
*
* GraphDatabaseService represents a graph database and is used to create
* new transactions with {@link #beginTx()}.
*/
@PublicApi
public interface GraphDatabaseService {
/**
* Check if the database is currently in a usable state.
* This method is equivalent to calling {@link #isAvailable(long)} with 0 as the requested timeout.
* @return the state of the database: {@code true} if it is available, otherwise {@code false}
* @see #isAvailable(long)
*/
boolean isAvailable();
/**
* Check if the database is currently in a usable state.
*
* @param timeoutMillis timeoutMillis (in milliseconds) to wait for the database to become available.
* If the database has been shut down {@code false} is returned immediately.
* @return the state of the database: {@code true} if it is available, otherwise {@code false}
*/
boolean isAvailable(long timeoutMillis);
/**
* Starts a new {@link Transaction transaction} and associates it with the current thread.
*
* All database operations must be wrapped in a transaction.
*
* If you attempt to access the graph outside of a transaction, those operations will throw
* {@link NotInTransactionException}.
*
* Please ensure that any returned {@link ResourceIterable} is closed correctly and as soon as possible
* inside your transaction to avoid potential blocking of write operations.
*
* @return a new transaction instance
*/
Transaction beginTx();
/**
* Starts a new {@link Transaction transaction} with custom timeout and associates it with the current thread.
* Timeout will be taken into account only when execution guard is enabled.
*
* All database operations must be wrapped in a transaction.
*
* If you attempt to access the graph outside of a transaction, those operations will throw
* {@link NotInTransactionException}.
*
* Please ensure that any returned {@link ResourceIterable} is closed correctly and as soon as possible
* inside your transaction to avoid potential blocking of write operations.
*
* @param timeout transaction timeout
* @param unit time unit of timeout argument
* @return a new transaction instance
*/
Transaction beginTx(long timeout, TimeUnit unit);
/**
* Executes query in a separate transaction.
* Capable to execute queries with inner transactions.
*
* @param query The query to execute
* @throws QueryExecutionException If the Query contains errors
*/
void executeTransactionally(String query) throws QueryExecutionException;
/**
* Executes query in a separate transaction.
* Capable to execute queries with inner transactions.
*
* @param query The query to execute
* @param parameters Parameters for the query
* @throws QueryExecutionException If the Query contains errors
*/
void executeTransactionally(String query, Map parameters) throws QueryExecutionException;
/**
* Executes query in a separate transaction and allow to query result to be consumed by provided {@link ResultTransformer}.
* Capable to execute queries with inner transactions.
*
* @param query The query to execute
* @param parameters Parameters for the query
* @param resultTransformer Query results consumer
* @throws QueryExecutionException If the query contains errors
*/
T executeTransactionally(String query, Map parameters, ResultTransformer resultTransformer)
throws QueryExecutionException;
/**
* Executes query in a separate transaction and allows query result to be consumed by provided {@link ResultTransformer}.
* If query will not gonna be able to complete within provided timeout time interval it will be terminated.
*
* Capable to execute queries with inner transactions.
*
* @param query The query to execute
* @param parameters Parameters for the query
* @param resultTransformer Query results consumer
* @param timeout Maximum duration of underlying transaction
* @throws QueryExecutionException If the query contains errors
*/
T executeTransactionally(
String query, Map parameters, ResultTransformer resultTransformer, Duration timeout)
throws QueryExecutionException;
/**
* Return name of underlying database
* @return database name
*/
String databaseName();
}