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

dk.alexandra.fresco.logging.PerformanceLogger Maven / Gradle / Ivy

There is a newer version: 1.3.7
Show newest version
package dk.alexandra.fresco.logging;

import java.util.Map;

/**
 * Interface for loggers recording performance metrics.
 */
public interface PerformanceLogger {

  /**
   * Resets any logged values.
   */
  public void reset();

  /**
   * Produces a map from a named metric to the values logged for that metric.
   */
  public Map getLoggedValues();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy