All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eg.agent.android.measurement.MethodMeasurement Maven / Gradle / Ivy

There is a newer version: 2.1.3
Show newest version
package com.eg.agent.android.measurement;


import com.eg.agent.android.instrumentation.MetricCategory;

public class MethodMeasurement extends CategorizedMeasurement {
    public MethodMeasurement(String name, String scope, long startTime, long endTime, long exclusiveTime, MetricCategory category) {
        super(MeasurementType.Method);
        setName(name);
        setScope(scope);
        setStartTime(startTime);
        setEndTime(endTime);
        setExclusiveTime(exclusiveTime);
        setCategory(category);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy