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

com.ibm.fhir.persistence.jdbc.TransactionData Maven / Gradle / Ivy

There is a newer version: 4.11.1
Show newest version
/*
 * (C) Copyright IBM Corp. 2020
 *
 * SPDX-License-Identifier: Apache-2.0
 */

package com.ibm.fhir.persistence.jdbc;


/**
 * Used to hold data accumulated by the JDBC persistence layer in the current
 * transaction. The data is persisted immediately prior to the transaction
 * being committed.
 */
public interface TransactionData {

    /**
     * Persist the data. Don't propagate any exceptions. If an exception occurs, log
     * the error and mark the transaction for rollback.
     */
    void persist();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy