All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.transaction.xa.recovery.RecoverableTransactionIdentifier Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
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