com.arjuna.ats.tsmx.mbeans
Interface PerformanceStatisticsMBean

All Known Implementing Classes:
PerformanceStatistics

Deprecated.

@Deprecated
public interface PerformanceStatisticsMBean

This class exposes the ArjunaJTS performance information via the JMX Management Bean interface.


Method Summary
 java.lang.String getIconFilename()
          Deprecated.  
 long getNumberOfAbortedTransactions()
          Deprecated. Get the number of transactions which have been aborted.
 long getNumberOfCommittedTransactions()
          Deprecated. Get the number of transactions which have been committed.
 long getNumberOfHeuristics()
          Deprecated. Get the number of transactions which have terminated with a heuristic outcome.
 long getNumberOfNestedTransactions()
          Deprecated. Get the number of nested (sub) transactions created so far.
 long getNumberOfTransactions()
          Deprecated. Get the number of transactions created so far (includes nested and top-level transactions).
 

Method Detail

getNumberOfTransactions

long getNumberOfTransactions()
Deprecated. 
Get the number of transactions created so far (includes nested and top-level transactions).

Returns:
The number of transactions created.

getNumberOfNestedTransactions

long getNumberOfNestedTransactions()
Deprecated. 
Get the number of nested (sub) transactions created so far.

Returns:
The number of nested transactions created so far.

getNumberOfHeuristics

long getNumberOfHeuristics()
Deprecated. 
Get the number of transactions which have terminated with a heuristic outcome.

Returns:
The number of transactions which have terminated with a heuristic outcome.

getNumberOfCommittedTransactions

long getNumberOfCommittedTransactions()
Deprecated. 
Get the number of transactions which have been committed.

Returns:
The number of transactions which have been committed.

getNumberOfAbortedTransactions

long getNumberOfAbortedTransactions()
Deprecated. 
Get the number of transactions which have been aborted.

Returns:
The number of transactions which have been aborted.

getIconFilename

java.lang.String getIconFilename()
Deprecated.