
woko.persistence.TransactionCallbackWithResult Maven / Gradle / Ivy
The newest version!
package woko.persistence;
/**
* Interface for transaction callbacks that return a result
* @param the type of the result
*/
public interface TransactionCallbackWithResult {
/**
* Execute callback and return the result
* @return the result of the callback execution
* @throws Exception if an error occurs while executing
*/
RES execute() throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy