com.xiaomi.infra.galaxy.fds.client.metrics.ClientMetrics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of galaxy-fds-sdk-java Show documentation
Show all versions of galaxy-fds-sdk-java Show documentation
Xiaomi File Storage Service SDK
package com.xiaomi.infra.galaxy.fds.client.metrics;
import java.util.ArrayList;
import java.util.List;
/**
* Created by zhangjunbin on 3/18/15.
*/
public class ClientMetrics {
public enum LatencyMetricType {
ExecutionTime
}
private List metrics = new ArrayList();
public List getMetrics() {
return metrics;
}
public void setMetrics(List metrics) {
this.metrics = metrics;
}
public void add(MetricData metricData) {
metrics.add(metricData);
}
}