Class TransactionData


  • public class TransactionData
    extends java.lang.Object
    Provides data about a particular transaction.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      long getLastDuration()
      Get the duration (in milliseconds) of the last recorded instance of this transaction.
      long getMaximumDuration()
      Get the maximum recorded duration (in milliseconds) of this transaction.
      double getMeanDuration()
      Get the mean recorded duration (in milliseconds) of this transaction.
      long getMinimumDuration()
      Get the minimum recorded duration (in milliseconds) of this transaction.
      java.lang.String getName()
      Get the name of the transaction
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getName

        public java.lang.String getName()
        Get the name of the transaction
        Returns:
        the name of the transaction
      • getLastDuration

        public long getLastDuration()
        Get the duration (in milliseconds) of the last recorded instance of this transaction.

        Note that this is the last duration recorded for the current VirtualUser, NOT for the entire test.

        Returns:
        the duration (in milliseconds) of the last recorded instance of this transaction.
      • getMinimumDuration

        public long getMinimumDuration()
        Get the minimum recorded duration (in milliseconds) of this transaction.

        Note that this is the minimum duration recorded for the current VirtualUser, NOT for the entire test.

        Returns:
        the minimum recorded duration (in milliseconds) of this transaction.
      • getMaximumDuration

        public long getMaximumDuration()
        Get the maximum recorded duration (in milliseconds) of this transaction.

        Note that this is the maximum duration recorded for the current VirtualUser, NOT for the entire test.

        Returns:
        the maximum recorded duration (in milliseconds) of this transaction.
      • getMeanDuration

        public double getMeanDuration()
        Get the mean recorded duration (in milliseconds) of this transaction.

        Note that this is the mean duration recorded for the current VirtualUser, NOT for the entire test.

        Returns:
        the mean recorded duration (in milliseconds) of this transaction.