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

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

The newest version!
package com.eg.agent.android.measurement;


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

public class MethodMetrics extends CategorizedMetrics {
    public MethodMetrics(String name, String scope, long startTime, long endTime, long exclusiveTime, MetricType category) {
        super(MetricsType.Method);
        setName(name);
        setScope(scope);
        setStartTime(startTime);
        setEndTime(endTime);
        setExclusiveTime(exclusiveTime);
        setCategory(category);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy