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

hudson.plugins.helpers.health.HealthMetric Maven / Gradle / Ivy

The newest version!
package hudson.plugins.helpers.health;

import java.io.Serializable;

/**
 * Created by IntelliJ IDEA. User: stephen Date: 17-Mar-2008 Time: 12:43:47 To change this template use File | Settings
 * | File Templates.
 */
public interface HealthMetric extends Serializable {

    String getName();

    float measure(OBSERVABLE observable);

    float getBest();

    float getWorst();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy