| java.lang.Object org.apache.derby.impl.store.raw.xact.TransactionTableEntry
TransactionTableEntry | public class TransactionTableEntry implements Formatable,TransactionInfo,Cloneable(Code) | | Transaction table entry is used to store all relavent information of a
transaction into the transaction table for the use of checkpoint, recovery,
Transaction management during Quiesce state, and for dumping transaction table. Only works
with the following classes: TransactionTable, XactFactory, Xact
During run time, whenever any transaction is started, it is put into the
transaction table. Whenever any transaction is closed, it is removed from
the transaction table.
|
EXCLUDE | final static int EXCLUDE(Code) | | |
RECOVERY | final static int RECOVERY(Code) | | |
UPDATE | final static int UPDATE(Code) | | |
TransactionTableEntry | public TransactionTableEntry()(Code) | | |
getFirstLogInstantString | public String getFirstLogInstantString()(Code) | | |
getGlobalTransactionIdString | public String getGlobalTransactionIdString()(Code) | | |
getStatementTextString | public String getStatementTextString()(Code) | | |
getTransactionIdString | public String getTransactionIdString()(Code) | | Methods of TransactionInfo
|
getTransactionStatus | int getTransactionStatus()(Code) | | |
getTransactionStatusString | public String getTransactionStatusString()(Code) | | |
getTransactionTypeString | public String getTransactionTypeString()(Code) | | |
getTypeFormatId | public int getTypeFormatId()(Code) | | Return my format identifier.
|
isPrepared | boolean isPrepared()(Code) | | |
isRecovery | boolean isRecovery()(Code) | | |
isUpdate | boolean isUpdate()(Code) | | |
needExclusion | public boolean needExclusion()(Code) | | |
prepareTransaction | void prepareTransaction()(Code) | | |
removeUpdateTransaction | void removeUpdateTransaction()(Code) | | |
unsetRecoveryStatus | void unsetRecoveryStatus()(Code) | | |
updateTransactionStatus | void updateTransactionStatus(Xact xact, int status, int attribute)(Code) | | |
|
|