Package com.facilita.fc.runtime
Class TransactionData
- java.lang.Object
-
- com.facilita.fc.runtime.TransactionData
-
public class TransactionData extends java.lang.ObjectProvides data about a particular transaction.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetLastDuration()Get the duration (in milliseconds) of the last recorded instance of this transaction.longgetMaximumDuration()Get the maximum recorded duration (in milliseconds) of this transaction.doublegetMeanDuration()Get the mean recorded duration (in milliseconds) of this transaction.longgetMinimumDuration()Get the minimum recorded duration (in milliseconds) of this transaction.java.lang.StringgetName()Get the name of the transaction
-
-
-
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.
-
-