org.infinispan.transaction.xa.recovery.RecoveryAwareTransaction Maven / Gradle / Ivy
package org.infinispan.transaction.xa.recovery;
import org.infinispan.transaction.xa.CacheTransaction;
/**
* Base interface for transactions that are holders of recovery information.
*
* @author [email protected]
* @since 5.0
*/
public interface RecoveryAwareTransaction extends CacheTransaction {
boolean isPrepared();
void setPrepared(boolean prepared);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy