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

com.orbitz.monitoring.api.Aggregator Maven / Gradle / Ivy

package com.orbitz.monitoring.api;

/**
 * Collects monitors
* Created May 20, 2010 * @author Greg Opaczewski */ public interface Aggregator { /** * Sends a monitor to the aggregation engine. * @param monitor the monitor */ void aggregate(Monitor monitor); /** * Shut down lifecycle method. */ void shutdown(); /** * Start up lifecycle method. */ void startup(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy