• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.robolectric.pluginapi.perf;
2 
3 import java.util.Collection;
4 
5 public interface PerfStatsReporter {
6 
7   /**
8    * Report performance stats.
9    *
10    * @param metadata metadata about this set of metrics.
11    * @param metrics the metrics.
12    */
report(Metadata metadata, Collection<Metric> metrics)13   void report(Metadata metadata, Collection<Metric> metrics);
14 }
15