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

org.hibernate.resource.transaction.spi.SynchronizationRegistry Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.resource.transaction.spi;

import java.io.Serializable;
import javax.transaction.Synchronization;

import org.hibernate.resource.transaction.NullSynchronizationException;

/**
 * Manages a registry of (local) JTA {@link Synchronization} instances
 *
 * @author Steve Ebersole
 */
public interface SynchronizationRegistry extends Serializable {
	/**
	 * Register a {@link Synchronization} callback for this transaction.
	 *
	 * @param synchronization The synchronization callback to register.
	 *
	 * @throws NullSynchronizationException if the synchronization is {@code null}
	 */
	void registerSynchronization(Synchronization synchronization);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy