Uses of Interface
com.iizix.txp.ITXPid
Packages that use ITXPid Package Description com.iizix.actionactor com.iizix.db.prop com.iizix.txp com.iizix.txp.impl Uses of ITXPid in com.iizix.actionactor
Methods in com.iizix.actionactor with parameters of type ITXPid Modifier and Type Method Description ITXPNode.State
AbstractJavaActionActor. begin(ITXProcess process, ITXPid pid)
Notifies the node it got associated with a transactional process.Uses of ITXPid in com.iizix.db.prop
Methods in com.iizix.db.prop with parameters of type ITXPid Modifier and Type Method Description ITXPNode.State
DatabaseActionTXPNode. begin(ITXProcess process, ITXPid pid)
Uses of ITXPid in com.iizix.txp
Methods in com.iizix.txp that return ITXPid Modifier and Type Method Description ITXPid
ITXPManagementInfo. getFixingPid()
Gets the Pid of the fixing process.ITXPid
ITXPManagementInfo. getPid()
Gets the Pid of the process.ITXPid
ITXPNode. getPid()
Gets the pid of this node.ITXPid
ITXProcess. getPid()
Gets the pid of his processMethods in com.iizix.txp that return types with arguments of type ITXPid Modifier and Type Method Description java.util.List<ITXPid>
ITXPManagementInfo. getFailingNodesInCommit()
Gets the list of the node pids that failed to commit.java.util.List<ITXPid>
ITXPManagementInfo. getFailingNodesInRollback()
Gets the list of the node pids that failed to rollback.java.util.List<ITXPid>
ITXPManagementInfo. getNodes()
Gets the list of Pids of all associated nodesMethods in com.iizix.txp with parameters of type ITXPid Modifier and Type Method Description ITXPNode.State
ITXPNode. begin(ITXProcess process, ITXPid pid)
Notifies the node it got associated with a transactional process.ITXPManagementInfo
ITXPManagementAPI. getManagementInfo(ITXPid pid)
Gets the management info of the specified process.void
ITXPManagementAPI. markFixed(ITXPid originalPid, ITXPid fixingPid)
Marks a process fixed specifying the fixing process.void
ITXPManagementAPI. markForManualFixOnly(ITXPid pid)
Marks a process for manual fixing only.void
ITXPManagementAPI. retrySingleNode(ITXPManagementInfo info, ITXPid pid)
Retries only a single node.Uses of ITXPid in com.iizix.txp.impl
Classes in com.iizix.txp.impl that implement ITXPid Modifier and Type Class Description class
TXPidImpl
Implementation if the ITXPid interface.Fields in com.iizix.txp.impl declared as ITXPid Modifier and Type Field Description protected ITXPid
AbstractTXPNode. pid
The PidMethods in com.iizix.txp.impl that return ITXPid Modifier and Type Method Description ITXPid
AbstractTXPNode. getPid()
ITXPid
TXProcessImpl. getPid()
static ITXPid
TXPidFactory. newNode(ITXPid Pid, long nodeQualNr)
Constructs a newITXPid
instance (implemented byTXPidImpl
) from an existing ITXPid and node qualifier.static ITXPid
TXPidFactory. newPid()
Constructs a newITXPid
instance (implemented byTXPidImpl
).Methods in com.iizix.txp.impl with parameters of type ITXPid Modifier and Type Method Description static ITXPid
TXPidFactory. newNode(ITXPid Pid, long nodeQualNr)
Constructs a newITXPid
instance (implemented byTXPidImpl
) from an existing ITXPid and node qualifier.static java.lang.String
TXPidFactory. toString(ITXPid Pid)
Gets the String representation of the specified ITXPidConstructors in com.iizix.txp.impl with parameters of type ITXPid Constructor Description TXPidImpl(ITXPid Pid, byte[] nodeQual)
Constructs aTXPidImpl
instance from the specified ITXPid and node qualifier.TXProcessImpl(ITXPid pid, TXPCoordinatorImpl coordinator)
Constructs a process.