org.kasource.spring.transaction.TransactionSupport Maven / Gradle / Ivy
package org.kasource.spring.transaction;
public interface TransactionSupport {
/**
* Registers listener so that it can get notification of current transaction
*
* @param listener listener to register
**/
public void addListener(TransactionListener listener);
/**
* Remove listener form listening to current transaction
*
* @param listener listener to remove
**/
public void removeListener(TransactionListener listener);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy