Hit builder used to collect timing related data. For example, this hit type can be useful to measure resource load times. For meaningful data, at least the category and the value should be set before sending the hit.
|
TimingBuilder(String category,
String
variable, long value)
Convenience constructor for creating a timing hit.
|
| HitBuilders.TimingBuilder |
setCategory(String category)
|
| HitBuilders.TimingBuilder | |
| HitBuilders.TimingBuilder |
setValue(long value)
|
| HitBuilders.TimingBuilder |
setVariable(String variable)
|
Convenience constructor for creating a timing hit. Additional fields can be specified using the setter methods.
| category | The type of variable being measured. Example: AssetLoader |
|---|---|
| variable | The variable being measured. Example: AssetLoader.load |
| value | The value associated with the variable. Example: 1000 |
| value | A timing value, in milliseconds. |
|---|