org.neo4j.fabric.transaction.parent.CompoundTransaction Maven / Gradle / Ivy
/*
* 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.fabric.transaction.parent;
import java.util.function.Supplier;
import org.neo4j.fabric.executor.Location;
import org.neo4j.fabric.transaction.TransactionMode;
import org.neo4j.kernel.api.exceptions.Status;
/**
* Represents a transaction which is made up of multiple child transactions
*/
public interface CompoundTransaction {
void commit();
void rollback();
/**
* Returns {@code true} if the transaction has been marked for termination by the caller,
* {@code false} otherwise (For instance, if the transaction has been already terminated by someone else).
*/
boolean markForTermination(Status reason);
/**
* Registers a child transaction created by the supplier.
* The mode determines how the child transaction is treated.
*
* - {@link TransactionMode#DEFINITELY_WRITE}: Maximum 1 child transactions can exist with this mode. Upgrading to write is a no-op.
* - {@link TransactionMode#MAYBE_WRITE}: Multiple child transactions can exist with this mode. Upgrading to write is possible.
* - {@link TransactionMode#DEFINITELY_READ}: Multiple child transactions can exist with this mode. Upgrading to write is not possible.
*
*/
Tx registerNewChildTransaction(
Location location, TransactionMode mode, Supplier transactionSupplier);
/**
* Upgrades the childTransaction to become the single DEFINITELY_WRITE transaction
* of this parent transaction, if possible.
*/
void upgradeToWritingTransaction(Tx childTransaction);
/**
* Register an autocommit query with the transaction.
* The only reason for this connection is termination.
* If the transaction gets terminated, all registered
* autocommit queries get terminated, too.
*/
void registerAutocommitQuery(AutocommitQuery autocommitQuery);
void unRegisterAutocommitQuery(AutocommitQuery autocommitQuery);
/**
* A callback invoked when a child transaction is terminated.
* It is a best effort as it works only for local child transactions.
*/
void childTransactionTerminated(Status reason);
interface AutocommitQuery {
void terminate(Status reason);
}
void closeTransaction(Child databaseTransaction);
}