- All Known Implementing Classes:
TransactionInfo
public interface TransactionInfoMBean
Interface to stats for a single Transaction Manager
-
Method Summary
Modifier and TypeMethodDescriptionlongNumber of read transactions executinglongNumber of write transactions executinglongNumber of read transactions executedlongNumber of transactions executedlongNumber of write transactions that abortedlongNumber of write transactions that committedlongNumber of write transactions that have committed but are not written to the base databaselongNumber of write transactions executed
-
Method Details
-
getTransactionCount
long getTransactionCount()Number of transactions executed -
getReadTransactionCount
long getReadTransactionCount()Number of read transactions executed -
getWriteTransactionCount
long getWriteTransactionCount()Number of write transactions executed -
getWriteAbortTransactionCount
long getWriteAbortTransactionCount()Number of write transactions that aborted -
getWriteCommitTransactionCount
long getWriteCommitTransactionCount()Number of write transactions that committed -
getWriteCommitTransactionPendingCount
long getWriteCommitTransactionPendingCount()Number of write transactions that have committed but are not written to the base database -
getCurrentWriteTransactionCount
long getCurrentWriteTransactionCount()Number of write transactions executing -
getCurrentReadTransactionCount
long getCurrentReadTransactionCount()Number of read transactions executing
-