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

com.hubspot.chrome.devtools.client.core.performance.MetricsEvent Maven / Gradle / Ivy

There is a newer version: 94.0.4606.61
Show newest version
package com.hubspot.chrome.devtools.client.core.performance;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.hubspot.chrome.devtools.client.core.Event;
import java.util.List;

/**
 * Current values of the metrics.
 */
public final class MetricsEvent extends Event {
  private List metrics;

  private String title;

  @JsonCreator
  public MetricsEvent(@JsonProperty("metrics") List metrics,
      @JsonProperty("title") String title) {
    this.metrics = metrics;
    this.title = title;
  }

  public List getMetrics() {
    return metrics;
  }

  public String getTitle() {
    return title;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy