org.ict4h.atomfeed.transaction.AFTransactionWork Maven / Gradle / Ivy
package org.ict4h.atomfeed.transaction;
public interface AFTransactionWork {
enum PropagationDefinition {
PROPAGATION_REQUIRED, PROPAGATION_REQUIRES_NEW
}
T execute();
PropagationDefinition getTxPropagationDefinition();
}