org.infinispan.transaction.xa.recovery.RecoverableTransactionIdentifier Maven / Gradle / Ivy
package org.infinispan.transaction.xa.recovery;
import javax.transaction.xa.Xid;
/**
* Interface that adds recovery required information to a {@link org.infinispan.transaction.xa.GlobalTransaction}.
*
* @author [email protected]
* @since 5.0
*/
public interface RecoverableTransactionIdentifier {
Xid getXid();
void setXid(Xid xid);
long getInternalId();
void setInternalId(long internalId);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy