Uses of Class
org.infinispan.commons.tx.XidImpl
-
Packages that use XidImpl Package Description org.infinispan.client.hotrod.transaction.manager org.infinispan.commons.tx org.infinispan.server.hotrod.command.tx org.infinispan.server.hotrod.tx org.infinispan.server.hotrod.tx.operation org.infinispan.server.hotrod.tx.table org.infinispan.server.hotrod.tx.table.functions org.infinispan.transaction.tm Infinispan's bare-bones internal transaction manager, used for batching calls as well as as a dummy, unit-test-only transaction manager. -
-
Uses of XidImpl in org.infinispan.client.hotrod.transaction.manager
Subclasses of XidImpl in org.infinispan.client.hotrod.transaction.manager Modifier and Type Class Description class
RemoteXid
Implementation ofXid
used byRemoteTransactionManager
. -
Uses of XidImpl in org.infinispan.commons.tx
Fields in org.infinispan.commons.tx with type parameters of type XidImpl Modifier and Type Field Description static AdvancedExternalizer<XidImpl>
XidImpl. EXTERNALIZER
Methods in org.infinispan.commons.tx that return XidImpl Modifier and Type Method Description static XidImpl
XidImpl. copy(Xid externalXid)
static XidImpl
XidImpl. create(int formatId, byte[] globalTransactionId, byte[] branchQualifier)
static XidImpl
XidImpl. readFrom(ObjectInput input)
Methods in org.infinispan.commons.tx with parameters of type XidImpl Modifier and Type Method Description static void
XidImpl. writeTo(ObjectOutput output, XidImpl xid)
-
Uses of XidImpl in org.infinispan.server.hotrod.command.tx
Constructors in org.infinispan.server.hotrod.command.tx with parameters of type XidImpl Constructor Description ForwardCommitCommand(ByteString cacheName, XidImpl xid, long timeout)
ForwardRollbackCommand(ByteString cacheName, XidImpl xid, long timeout)
-
Uses of XidImpl in org.infinispan.server.hotrod.tx
Constructors in org.infinispan.server.hotrod.tx with parameters of type XidImpl Constructor Description PrepareCoordinator(AdvancedCache<byte[],byte[]> cache, XidImpl xid, boolean recoverable, long transactionTimeout)
-
Uses of XidImpl in org.infinispan.server.hotrod.tx.operation
Methods in org.infinispan.server.hotrod.tx.operation with parameters of type XidImpl Modifier and Type Method Description static void
Util. commitLocalTransaction(AdvancedCache<?,?> cache, XidImpl xid, long timeout)
static void
Util. rollbackLocalTransaction(AdvancedCache<?,?> cache, XidImpl xid, long timeout)
Constructors in org.infinispan.server.hotrod.tx.operation with parameters of type XidImpl Constructor Description CommitTransactionOperation(HotRodHeader header, HotRodServer server, Subject subject, XidImpl xid, BiConsumer<HotRodHeader,Integer> reply)
RollbackTransactionOperation(HotRodHeader header, HotRodServer server, Subject subject, XidImpl xid, BiConsumer<HotRodHeader,Integer> reply)
-
Uses of XidImpl in org.infinispan.server.hotrod.tx.table
Methods in org.infinispan.server.hotrod.tx.table that return XidImpl Modifier and Type Method Description XidImpl
CacheXid. getXid()
Methods in org.infinispan.server.hotrod.tx.table with parameters of type XidImpl Modifier and Type Method Description void
GlobalTxTable. forgetTransaction(XidImpl xid)
void
GlobalTxTable. markToCommit(XidImpl xid, CacheNameCollector collector)
void
GlobalTxTable. markToRollback(XidImpl xid, CacheNameCollector collector)
Constructors in org.infinispan.server.hotrod.tx.table with parameters of type XidImpl Constructor Description CacheXid(ByteString cacheName, XidImpl xid)
-
Uses of XidImpl in org.infinispan.server.hotrod.tx.table.functions
Constructors in org.infinispan.server.hotrod.tx.table.functions with parameters of type XidImpl Constructor Description XidPredicate(XidImpl xid)
-
Uses of XidImpl in org.infinispan.transaction.tm
Subclasses of XidImpl in org.infinispan.transaction.tm Modifier and Type Class Description class
EmbeddedXid
Implementation ofXid
used byEmbeddedTransactionManager
.
-