io.hypersistence.utils.test.transaction.SessionTransactionFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hypersistence-utils-hibernate-62 Show documentation
Show all versions of hypersistence-utils-hibernate-62 Show documentation
Utilities for Spring and Hibernate ORM 6.2 or newer
The newest version!
package io.hypersistence.utils.test.transaction;
import org.hibernate.Session;
import java.util.function.Function;
/**
* @author Vlad Mihalcea
*/
@FunctionalInterface
public interface SessionTransactionFunction extends Function {
default void beforeTransactionCompletion() {
}
default void afterTransactionCompletion() {
}
}