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

org.infinispan.commands.tx.TransactionBoundaryCommand Maven / Gradle / Ivy

package org.infinispan.commands.tx;

import org.infinispan.commands.TopologyAffectedCommand;
import org.infinispan.transaction.xa.GlobalTransaction;
import org.infinispan.commands.remote.CacheRpcCommand;
import org.infinispan.commands.VisitableCommand;

/**
 * An transaction boundary command that allows the retrieval of an attached 
 * {@link org.infinispan.transaction.xa.GlobalTransaction}
 *
 * @author Manik Surtani ([email protected])
 * @author [email protected]
 * @since 4.0
 */
public interface TransactionBoundaryCommand extends VisitableCommand, CacheRpcCommand, TopologyAffectedCommand {

   GlobalTransaction getGlobalTransaction();

   void markTransactionAsRemote(boolean remote);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy