Package com.xceptance.xlt.api.engine
Class CustomData
- java.lang.Object
-
- com.xceptance.xlt.api.engine.AbstractData
-
- com.xceptance.xlt.api.engine.TimerData
-
- com.xceptance.xlt.api.engine.CustomData
-
- All Implemented Interfaces:
Data
public class CustomData extends TimerData
The
CustomDatashould be used only if the intended purpose does not match the semantics of the other data record classes (RequestData,ActionData, andTransactionData). For example, if one wants to measure a certain functionality during client-side processing, a custom timer may suit best.Note that
CustomDataobjects have a "C" as their type code.- See Also:
ActionData,RequestData,TransactionData
-
-
Constructor Summary
Constructors Constructor Description CustomData()Creates a new CustomData object.CustomData(java.lang.String name)Creates a new CustomData object and gives it the specified name.
-
Method Summary
-
Methods inherited from class com.xceptance.xlt.api.engine.TimerData
addValues, getEndTime, getMinNoCSVElements, getRunTime, hasFailed, parseRemainingValues, setFailed, setRunTime, setRunTime
-
Methods inherited from class com.xceptance.xlt.api.engine.AbstractData
baseValuesFromCSV, getAgentName, getName, getTime, getTransactionName, getTypeCode, parseBaseValues, parseValues, remainingValuesFromCSV, setAgentName, setName, setTime, setTransactionName, toCSV
-
-
-
-
Constructor Detail
-
CustomData
public CustomData()
Creates a new CustomData object.
-
CustomData
public CustomData(java.lang.String name)
Creates a new CustomData object and gives it the specified name. Furthermore, the start time attribute is set to the current time.- Parameters:
name- the statistics name
-
-