Package com.xceptance.xlt.api.engine
Class ActionData
java.lang.Object
com.xceptance.xlt.api.engine.AbstractData
com.xceptance.xlt.api.engine.TimerData
com.xceptance.xlt.api.engine.ActionData
- All Implemented Interfaces:
Data
The ActionData
class holds any data measured for an action. Typically, an action represents one
self-contained test step, which itself comprises one or more requests.
The values stored include not only the action's start and run time, but also an indicator whether or not the action was executed successfully. Data gathered for the same type of action may be correlated via the name attribute.
Note that ActionData
objects have an "A" as their type code.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new ActionData object.ActionData
(String name) Creates a new ActionData object and gives it the specified name. -
Method Summary
Methods inherited from class com.xceptance.xlt.api.engine.TimerData
getEndTime, getRunTime, hasFailed, setFailed, setRemainingValues, setRunTime, setRunTime, toList
Methods inherited from class com.xceptance.xlt.api.engine.AbstractData
getAgentName, getName, getTime, getTransactionName, getTypeCode, setAgentName, setAllValues, setBaseValues, setName, setTime, setTransactionName
-
Constructor Details
-
ActionData
public ActionData()Creates a new ActionData object. -
ActionData
Creates a new ActionData object and gives it the specified name. Furthermore, the start time attribute is set to the current time.- Parameters:
name
- the action name
-